GrapeCity SPREAD for Windows Forms 11.0J
ShowToday プロパティ (DropDownCalendar)


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

プロパティ値

今日の日付を表示するかどうかを示す bool 値。既定値は false です。
解説
このプロパティは、このカレンダーの下部に今日の日付を表示するかどうかを決定します。
次のサンプルコードは、ShowTodayプロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.DropDownCalendar.LegendStyle = new GrapeCity.Win.Spread.InputMan.CellType.Style(Color.Azure, Color.Black);
inputcell.DropDownCalendar.ShowToday = true;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.DropDownCalendar.LegendStyle = New GrapeCity.Win.Spread.InputMan.CellType.Style(Color.Azure, Color.Black)
inputcell.DropDownCalendar.ShowToday = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.