MESCIUS SPREAD for ASP.NET 10.0J
AutoPostBack プロパティ (ComboBoxCellType)

クリックしたときにコントロールが自動的にポストバックするかどうかを取得または設定します。このプロパティは、ShowButtonプロパティがtrueに設定されている場合にのみ効果があります。
構文
'Declaration
 
Public Property AutoPostBack As Boolean
public bool AutoPostBack {get; set;}

プロパティ値

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

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

このプロパティが効力を持つのは、ShowButtonプロパティがTrueに設定されている場合のみです。

この例では、コンボボックスを使用し、ポストバックを強制します。
FarPoint.Web.Spread.ComboBoxCellType c = new FarPoint.Web.Spread.ComboBoxCellType(new String[] {"One", "Two", "Three"});
c.AutoPostBack = true;
c.ShowButton = true; 
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = c;
Dim c As New FarPoint.Web.Spread.ComboBoxCellType(New String() {"One", "Two", "Three"})
c.AutoPostBack = True
c.ShowButton = True 
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = c
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.