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

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

プロパティ値

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

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

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

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.