MESCIUS SPREAD for ASP.NET 10.0J
Clear メソッド (DefaultSheetStyleModel)

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

パラメータ

row
クリアするモデル行の開始インデックス
column
クリアするモデル列の開始インデックス
rowCount
クリアする行数
columnCount
クリアする列数
解説
このメソッドは、指定したセル範囲からセルスタイルを削除します。
この例では、新しいStyleInfoオブジェクトを作成し、先頭セルの背景色を変更します。ボタンクリックイベントで、DefaultSheetStyleModelをクリアします。
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
	If IsPostBack Then Return
	
	Dim model As FarPoint.Web.Spread.Model.DefaultSheetStyleModel = FpSpread1.Sheets(0).StyleModel
	Dim style As New FarPoint.Web.Spread.StyleInfo()
	style.BackColor = Color.Yellow
	model.SetDirectInfo(0, 0, style)
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
	Dim model As FarPoint.Web.Spread.Model.DefaultSheetStyleModel = FpSpread1.Sheets(0).StyleModel
	model.Clear(0, 0, 1, 1)
End Sub
private void Page_Load(object sender, System.EventArgs e)
{
	if (this.IsPostBack) return;

	FarPoint.Web.Spread.Model.DefaultSheetStyleModel model = (FarPoint.Web.Spread.Model.DefaultSheetStyleModel)FpSpread1.Sheets[0].StyleModel;
	FarPoint.Web.Spread.StyleInfo style = new FarPoint.Web.Spread.StyleInfo();
	style.BackColor = Color.Yellow;
	model.SetDirectInfo(0, 0, style);
}

private void Button1_Click(object sender, System.EventArgs e)
{
	FarPoint.Web.Spread.Model.DefaultSheetStyleModel model = (FarPoint.Web.Spread.Model.DefaultSheetStyleModel)FpSpread1.Sheets[0].StyleModel;
	model.Clear(0, 0, 1, 1);
}
参照

DefaultSheetStyleModel クラス
DefaultSheetStyleModel メンバ
Copy メソッド
Move メソッド
Swap メソッド

 

 


© MESCIUS inc. All rights reserved.