PowerTools SPREAD for Windows Forms 8.0J
Move メソッド (DefaultSheetDataModel)


移動元範囲の開始行インデックス
移動元範囲の開始列インデックス
移動先範囲の開始行インデックス
移動先範囲の開始列インデックス
範囲の行数
範囲の列数
セル範囲のデータを別の位置に移動します。
構文
'Declaration
 
Public Sub Move( _
   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 DefaultSheetDataModel
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.Move(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount)
public void Move( 
   int fromRow,
   int fromColumn,
   int toRow,
   int toColumn,
   int rowCount,
   int columnCount
)

パラメータ

fromRow
移動元範囲の開始行インデックス
fromColumn
移動元範囲の開始列インデックス
toRow
移動先範囲の開始行インデックス
toColumn
移動先範囲の開始列インデックス
rowCount
範囲の行数
columnCount
範囲の列数
例外
例外説明
System.ArgumentException指定された開始行および終了行または行数が無効です。
System.ArgumentException指定された開始列および終了列または列数が無効です。
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8)
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.SetValue(0, 0, "Let's")
dataModel.SetValue(0, 1, "Move")
dataModel.Move(0, 0, 3, 2, 1, 2)
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.SetValue(0, 0, "Let's");
dataModel.SetValue(0, 1, "Move");
dataModel.Move(0, 0, 3, 2, 1, 2);
参照

DefaultSheetDataModel クラス
DefaultSheetDataModel メンバ

 

 


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