PowerTools SPREAD for ASP.NET 8.0J
AutoPostBack プロパティ (CheckBoxCellType)

クリックしたときにコンポーネントが自動的にポストバックするかどうかを取得または設定します。
構文
'Declaration
 
Public Property AutoPostBack As Boolean
public bool AutoPostBack {get; set;}

プロパティ値

Boolean:自動的にポストバックする場合はTrue、それ以外の場合はFalse
解説

このプロパティは、コンポーネントがユーザーの操作に基づいてデータを自動的にサーバーにポストバックするかどうかを決定します。

この例では、チェックボックスを使用し、ポストバックを強制します。
FarPoint.Web.Spread.CheckBoxCellType c = new FarPoint.Web.Spread.CheckBoxCellType();
c.AutoPostBack = true; 
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = c;
Dim c As New FarPoint.Web.Spread.CheckBoxCellType
c.AutoPostBack = True 
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = c
参照

CheckBoxCellType クラス
CheckBoxCellType メンバ

 

 


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