PowerTools SPREAD for Windows Forms 8.0J
DropDown プロパティ (GcDateTimeCellType)


ドロップダウン機能のドロップダウン設定を取得します。
構文
'Declaration
 
Public ReadOnly Property DropDown As DateTimeDropDownInfo
'使用法
 
Dim instance As GcDateTimeCellType
Dim value As DateTimeDropDownInfo
 
value = instance.DropDown
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 メンバ

 

 


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