PowerTools InputMan for ASP.NET 8.0J
ShowToday プロパティ (GcCalendar)
使用例 

カレンダーの下側に今日の日付を表示するかどうかを取得または設定します。
構文
Public Property ShowToday As Boolean
public bool ShowToday {get; set;}

プロパティ値

今日の日付を表示する場合はTrue、しない場合はFalse。既定値はFalseです。
解説
ShowTodayプロパティは、カレンダーの下側に今日の日付を表示するかどうかを設定します。今日の日付の描画スタイルを設定するには、LegendStyleプロパティが参照するP:GrapeCity.Web.Input.IMCalendar.Styleオブジェクトを設定します。
使用例
次のサンプルコードは、今日の日付を設定する方法を示します。
' 今日の日付を表示します。
GcCalendar1.ShowToday = True

' 今日の日付の描画スタイルを設定します。
GcCalendar1.LegendStyle.Font.Name = "MS ゴシック"
GcCalendar1.LegendStyle.BorderStyle = BorderStyle.Solid
GcCalendar1.LegendStyle.BorderColor = Color.LightGray
GcCalendar1.LegendStyle.BorderWidth = 1
GcCalendar1.LegendStyle.ForeColor = Color.Purple
GcCalendar1.LegendStyle.BackColor = Color.WhiteSmoke
// 今日の日付を表示します。
calendar1.ShowToday = true;

// 今日の日付の描画スタイルを設定します。
GcCalendar1.LegendStyle.Font.Name = "MS ゴシック";
GcCalendar1.LegendStyle.BorderStyle = BorderStyle.Solid;
GcCalendar1.LegendStyle.BorderColor = Color.LightGray;
GcCalendar1.LegendStyle.BorderWidth = 1;
GcCalendar1.LegendStyle.ForeColor = Color.Purple;
GcCalendar1.LegendStyle.BackColor = Color.WhiteSmoke;
参照

GcCalendar クラス
GcCalendar メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.