MESCIUS SPREAD for Windows Forms 17.0J
AutoDropDown プロパティ (DropDown)

コントロールがフォーカスを取得したときにドロップダウンウィンドウが自動的に表示されるかどうかを示す bool 値を取得または設定します。
構文
'Declaration
 
Public Property AutoDropDown As Boolean
public bool AutoDropDown {get; set;}

プロパティ値

bool値。コントロールがフォーカスを取得したときにドロップダウンウィンドウが自動的に表示される場合はtrue。それ以外の場合はfalse

デフォルト値はfalseです。
解説
AutoDropDowntrue で、なおかつ AllowDroptrue であるときは、ドロップダウンウィンドウが自動的に表示されます。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
datecell.DropDownCalendar.BackColor = Color.Red;
datecell.DropDownCalendar.CalendarDimensions = new Size(3, 1);
datecell.DropDownCalendar.Font = new Font("Arial", 10, FontStyle.Bold);
datecell.DropDown.AllowDrop = true;
datecell.DropDown.AllowResize = true;
datecell.DropDown.AutoDropDown = true;
datecell.DefaultActiveField = datecell.Fields[2];
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
fpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
datecell.DropDownCalendar.BackColor = Color.Red
datecell.DropDownCalendar.CalendarDimensions = New Size(3, 1)
datecell.DropDownCalendar.Font = New Font("Arial", 10, FontStyle.Bold)
datecell.DropDown.AllowDrop = True
datecell.DropDown.AllowResize = True
datecell.DropDown.AutoDropDown = True
datecell.DefaultActiveField = datecell.Fields(2)
参照

DropDown クラス
DropDown メンバ

 

 


© MESCIUS inc. All rights reserved.