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


コピーを開始するセルの行インデックス
コピーを開始するセルの列インデックス
セルスタイルの貼り付け先の行インデックス
セルスタイルの貼り付け先の列インデックス
コピーする行数
コピーする列数
指定したセル範囲の直接スタイルを別のセル範囲にコピーします。
構文
'Declaration
 
Public Overridable Sub Copy( _
   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.Copy(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount)
public virtual void Copy( 
   int fromRow,
   int fromColumn,
   int toRow,
   int toColumn,
   int rowCount,
   int columnCount
)

パラメータ

fromRow
コピーを開始するセルの行インデックス
fromColumn
コピーを開始するセルの列インデックス
toRow
セルスタイルの貼り付け先の行インデックス
toColumn
セルスタイルの貼り付け先の列インデックス
rowCount
コピーする行数
columnCount
コピーする列数
次のサンプルコードは、指定した範囲の直接スタイルを別の位置にコピーします。
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
defstyleModel.Copy(0, 0, 10, 10, 5, 5)
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
defstyleModel.Copy(0, 0, 10, 10, 5, 5);
参照

DefaultSheetStyleModel クラス
DefaultSheetStyleModel メンバ

 

 


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