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

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

プロパティ値

自動的にポストバックする場合はtrue、それ以外の場合はfalse
解説
このプロパティは、コンポーネントがユーザーの操作に基づいてデータを自動的にサーバーにポストバックするかどうかを決定します。
この例では、チェックボックスエディタを使用し、ポストバックを強制します。
FarPoint.Web.Spread.Editor.CheckBoxEditor ce = new FarPoint.Web.Spread.Editor.CheckBoxEditor();
ce.AutoPostBack = true; 
FpSpread1.ActiveSheetView.Cells[0, 0].Editor = ce;
Dim ce As New FarPoint.Web.Spread.Editor.CheckBoxEditor
ce.AutoPostBack = True 
FpSpread1.ActiveSheetView.Cells(0, 0).Editor = ce
参照

CheckBoxEditor クラス
CheckBoxEditor メンバ

 

 


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