FarPoint.Web.Spread 名前空間 > ComboBoxCellType クラス : AutoPostBack プロパティ |
このプロパティは、コンポーネントがユーザーの操作に基づいてデータを自動的にサーバーにポストバックするかどうかを決定します。
このプロパティが効力を持つのは、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