名前空間一覧 > GrapeCity.Web.Input.IMDate 名前空間 > DropDownCalendar クラス : HeaderFormat プロパティ |
キーワード | 説明 |
---|---|
g | 年号の頭文字をアルファベットで表示(M、T、S、H) |
gg | 年号の頭文字を漢字で表示(明、大、昭、平) |
ggg | 年号の正式名称を漢字で表示(明治、大正、昭和、平成) |
e | 和暦年を2桁で表示(先頭に0を付けない) |
ee | 和暦年を2桁で表示(先頭に0を付ける) |
y | 年を2桁で表示(先頭に0を付けない) |
yy | 年を2桁で表示(先頭に0を付ける) |
yyy | 年を4桁で表示(先頭に0を付けない) |
yyyy | 年を4桁で表示(先頭に0を付ける) |
M | 月を2桁の数字で表示(先頭に0を付けない) |
MM | 月を2桁の数字で表示(先頭に0を付ける) |
MMM | 月を省略形で表示 (DateTimeFormatInfo.AbbreviatedMonthNames() で指定された形式) |
MMMM | 月を正式名称で表示 (DateTimeFormatInfo.MonthNames()で指定された形式) |
\(Chr(92)) | キーワードをリテラル文字として表示 |
Imports GrapeCity.Web.Input.Core ' ヘッダを表示します。 GcDateTime1.DropDownCalendar.ShowHeader = True ' ヘッダの高さを23ピクセルに設定します。 GcDateTime1.DropDownCalendar.HeaderHeight = 23 ' 年月を和暦で表示します。 GcDateTime1.DropDownCalendar.HeaderFormat = "ggg e年 M月" ' ヘッダのスタイルを設定します。 GcDateTime1.DropDownCalendar.HeaderStyle.BackColor = Color.Thistle GcDateTime1.DropDownCalendar.HeaderStyle.ForeColor = Color.Blue GcDateTime1.DropDownCalendar.HeaderStyle.Font.Name = "MS ゴシック" GcDateTime1.DropDownCalendar.HeaderStyle.BorderColor = Color.Purple GcDateTime1.DropDownCalendar.HeaderStyle.BorderStyle = BorderStyle.Solid GcDateTime1.DropDownCalendar.HeaderStyle.BorderWidth = 1 GcDateTime1.DropDownCalendar.HeaderStyle.TextHAlign = AlignHorizontal.Center GcDateTime1.DropDownCalendar.HeaderStyle.TextVAlign = AlignVertical.Middle
using GrapeCity.Web.Input.Core; // ヘッダを表示します。 GcDateTime1.DropDownCalendar.ShowHeader = true; // ヘッダの高さを23ピクセルに設定します。 GcDateTime1.DropDownCalendar.HeaderHeight = 23; // 年月を和暦で表示します。 GcDateTime1.DropDownCalendar.HeaderFormat = "ggg e年 M月"; // ヘッダのスタイルを設定します。 GcDateTime1.DropDownCalendar.HeaderStyle.BackColor = Color.Thistle; GcDateTime1.DropDownCalendar.HeaderStyle.ForeColor = Color.Blue; GcDateTime1.DropDownCalendar.HeaderStyle.Font.Name = "MS ゴシック"; GcDateTime1.DropDownCalendar.HeaderStyle.BorderColor = Color.Purple; GcDateTime1.DropDownCalendar.HeaderStyle.BorderStyle = BorderStyle.Solid; GcDateTime1.DropDownCalendar.HeaderStyle.BorderWidth = 1; GcDateTime1.DropDownCalendar.HeaderStyle.TextHAlign = AlignHorizontal.Center; GcDateTime1.DropDownCalendar.HeaderStyle.TextVAlign = AlignVertical.Middle;