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


クリアするモデル行の開始インデックス
クリアするモデル列の開始インデックス
クリアする行数
クリアする列数
指定した範囲からすべての直接スタイルを削除します。
構文
'Declaration
 
Public Overridable Sub Clear( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'使用法
 
Dim instance As DefaultSheetStyleModel
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.Clear(row, column, rowCount, columnCount)
public virtual void Clear( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

パラメータ

row
クリアするモデル行の開始インデックス
column
クリアするモデル列の開始インデックス
rowCount
クリアする行数
columnCount
クリアする列数
次のサンプルコードは、指定した範囲からすべての直接スタイルを削除します。
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
defstyleModel.Clear(0, 0, 500, 500);
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
defstyleModel.Clear(0, 0, 500, 500)
参照

DefaultSheetStyleModel クラス
DefaultSheetStyleModel メンバ

 

 


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