PowerTools SPREAD for Windows Forms 8.0J
Swap メソッド (DefaultSheetStyleModel)


交換元の先頭のセルの行インデックス
交換元の先頭のセルの列インデックス
交換先の先頭のセルの行インデックス
交換先の先頭のセルの列インデックス
交換する行数
交換する列数
指定した範囲の直接スタイルを別に指定した範囲の 直接スタイルと交換します。
構文
'Declaration
 
Public Overridable Sub Swap( _
   ByVal fromRow As Integer, _
   ByVal fromColumn As Integer, _
   ByVal toRow As Integer, _
   ByVal toColumn As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'使用法
 
Dim instance As DefaultSheetStyleModel
Dim fromRow As Integer
Dim fromColumn As Integer
Dim toRow As Integer
Dim toColumn As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.Swap(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount)
public virtual void Swap( 
   int fromRow,
   int fromColumn,
   int toRow,
   int toColumn,
   int rowCount,
   int columnCount
)

パラメータ

fromRow
交換元の先頭のセルの行インデックス
fromColumn
交換元の先頭のセルの列インデックス
toRow
交換先の先頭のセルの行インデックス
toColumn
交換先の先頭のセルの列インデックス
rowCount
交換する行数
columnCount
交換する列数
次のサンプルコードは、スタイルの位置を交換します。
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
sInfo.BackColor = Color.LightBlue;
defstyleModel.SetDirectInfo(0, 0, sInfo);
defstyleModel.Swap(0, 0, 3, 0 , 1, 1);
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
Dim sInfo As New FarPoint.Win.Spread.StyleInfo()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
sInfo.BackColor = Color.LightBlue
defstyleModel.SetDirectInfo(0, 0, sInfo)
defstyleModel.Swap(0, 0, 3, 0, 1, 1)
参照

DefaultSheetStyleModel クラス
DefaultSheetStyleModel メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.