PowerTools SPREAD for ASP.NET 8.0J
ShowButton プロパティ (ComboBoxCellType)

コンボボックスを常に表示するかどうかを取得または設定します。
構文
'Declaration
 
Public Property ShowButton As Boolean
public bool ShowButton {get; set;}

プロパティ値

Boolean:コンボボックスボタンを常に表示する場合はTrue、それ以外の場合はFalse
この例では、コンボボックスを使用してポストバックを強制し、ボタンを常に表示するように設定します。
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 メンバ

 

 


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