PowerTools SPREAD for Windows Forms 8.0J
Font プロパティ (DropDownCalendar)


ドロップダウンカレンダーのフォントを取得または設定します。
構文
'Declaration
 
Public Property Font As Font
'使用法
 
Dim instance As DropDownCalendar
Dim value As Font
 
instance.Font = value
 
value = instance.Font
public Font Font {get; set;}

プロパティ値

DropDownCalendar のフォントを示す System.Drawing.Font オブジェクト。
解説
デフォルト値はコントロールのフォントと同じです。値がnull 参照 (Visual Basicでは Nothing)の場合、例外は発生せず、自動的にデフォルト値に設定されます。
次のサンプルコードは、Font プロパティを使用します。
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)
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


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