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


切り取りを開始する行インデックス
切り取りを開始する列インデックス
セルスタイルの貼り付け先の行インデックス
セルスタイルの貼り付け先の列インデックス
移動する行の数
移動する列の数
指定した範囲の直接スタイルを別の位置に 移動します。
構文
'Declaration
 
Public Overridable 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 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.Move(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount)
public virtual void Move( 
   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.Move(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.Move(0, 0, 3, 0, 1, 1)
参照

DefaultSheetStyleModel クラス
DefaultSheetStyleModel メンバ

 

 


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