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

今日の日付の描画スタイルを示すGrapeCity.Web.Input.IMCalendar.Styleオブジェクトを取得または設定します。
構文
Public Property LegendStyle As Style
public Style LegendStyle {get; set;}
解説
ShowTodayプロパティをTrueに設定すると、カレンダーの下部に「今日」の日付が表示されます。LegendStyleプロパティは、今日の日付の描画スタイルを設定します。

カレンダーを構成する要素の中で、描画スタイルが適用されるのは次の6種類です。
  1. コントロール (ControlStyle
  2. ヘッダ (HeaderStyle
  3. 曜日タイトル (TitleStyle
  4. 日付領域または月領域 (ItemStyle
  5. 今日の日付 (LegendStyle
  6. 週番号 (WeekNumberStyle


これらの描画スタイルでは、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.