PowerTools SPREAD for Windows Forms 8.0J
DropDownButton プロパティ (EditBaseCellType)


セルにドロップダウンボタンを表示するかどうかを取得または設定します。
構文
'Declaration
 
Public Property DropDownButton As Boolean
'使用法
 
Dim instance As EditBaseCellType
Dim value As Boolean
 
instance.DropDownButton = value
 
value = instance.DropDownButton
public bool DropDownButton {get; set;}

プロパティ値

Boolean:ドロップダウン ボタンが表示される場合は True、それ以外の場合は False
次のサンプルコードは、日付時刻型セルにドロップダウンボタンを作成します。
FarPoint.Win.Spread.CellType.DateTimeCellType datecell = new FarPoint.Win.Spread.CellType.DateTimeCellType();
datecell.DropDownButton = true;
fpSpread1.Sheets[0].Cells[0,0].CellType =datecell;
Dim datecell As New FarPoint.Win.Spread.CellType.DateTimeCellType()
datecell.DropDownButton = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
参照

EditBaseCellType クラス
EditBaseCellType メンバ

 

 


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