PowerTools SPREAD for Windows Forms 10.0J
ShowTodayMark プロパティ (DropDownCalendar)


今日を示すマークを表示するかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property ShowTodayMark As Boolean
'使用法
 
Dim instance As DropDownCalendar
Dim value As Boolean
 
instance.ShowTodayMark = value
 
value = instance.ShowTodayMark
public bool ShowTodayMark {get; set;}

プロパティ値

今日を示すマークを表示するかどうかを示すbool値。デフォルト値はtrueです。
次のサンプルコードは、ShowTodayMarkプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.DropDownCalendar.BackColor = Color.Aquamarine;
inputcell.DropDownCalendar.TodayMarkColor = Color.Firebrick;
inputcell.DropDownCalendar.BorderStyle = BorderStyle.FixedSingle;
inputcell.DropDownCalendar.ShowTodayMark = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
fpSpread1.Sheets[0].Columns[0].Width = 100;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.DropDownCalendar.BackColor = Color.Aquamarine
inputcell.DropDownCalendar.TodayMarkColor = Color.Firebrick
inputcell.DropDownCalendar.BorderStyle = BorderStyle.FixedSingle
inputcell.DropDownCalendar.ShowTodayMark = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
FpSpread1.Sheets(0).Columns(0).Width = 100
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


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