GrapeCity SPREAD for WPF 2.0J
DropDownButtonVisibility プロパティ (NumberCellType)

ドロップダウンボタンの表示方法を決定する値を取得または設定します。
構文
'Declaration
 
Public Property DropDownButtonVisibility As CellButtonVisibility
public CellButtonVisibility DropDownButtonVisibility {get; set;}

プロパティ値

ドロップダウンボタンの表示方法を決定する CellButtonVisibility 列挙体。
次のサンプルはNumberCellTypeを作成しスピンボタンおよびドロップボタンの表示設定を行います。
public void CreateNumberCell2()
{
    NumberCellType numberCellType1 = new NumberCellType();
    numberCellType1.DropDownButtonVisibility = CellButtonVisibility.AlwaysShow;
    numberCellType1.SpinButtonVisibility = CellButtonVisibility.NotShow;
    numberCellType1.AutoOpenDropDown = true;
    this._gcSpreadGrid1[0, 0].CellType = numberCellType1;
}
Public Sub CreateNumberCell2()
    Dim numberCellType1 As New NumberCellType()
    numberCellType1.DropDownButtonVisibility = CellButtonVisibility.AlwaysShow
    numberCellType1.SpinButtonVisibility = CellButtonVisibility.NotShow
    numberCellType1.AutoOpenDropDown = True
    Me._gcSpreadGrid1(0, 0).CellType = numberCellType1
End Sub
参照

NumberCellType クラス
NumberCellType メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.