MESCIUS SPREAD for Windows Forms 15.0J
DropDown プロパティ (GcDateTimeCellType)
使用例 

ドロップダウン機能のドロップダウン設定を取得します。
構文
'宣言
 
Public ReadOnly Property DropDown As DateTimeDropDownInfo
public DateTimeDropDownInfo DropDown {get;}

プロパティ値

ドロップダウンカレンダーの設定を示すDropDownインスタンス。
解説
この DropDown プロパティを設定することで、ドロップダウンの動作とウィンドウの外観をカスタマイズできます。このプロパティは、ドロップダウンを表示するかどうか、ドロップダウンをサイズ変更可能にするかどうか、ドロップダウンウィンドウの方向、ドロップダウンウィンドウの影、および開閉時のアニメーションを指定します。
使用例
次のサンプルコードは、DropDownプロパティを使用します。
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)
参照

GcDateTimeCellType クラス
GcDateTimeCellType メンバ

 

 


© MESCIUS inc. All rights reserved.