MESCIUS InputMan for Windows Forms 12.0J > InputManの使い方 > 日付時刻コントロール > ドロップダウンカレンダー > ヘッダの書式設定 |
ドロップダウンカレンダーのヘッダに表示できる書式の設定について解説します。
CalendarType プロパティがCalendarType.MonthDay のとき(月-日カレンダー)のヘッダの表示書式はHeaderFormat プロパティで設定します。 HeaderFormat プロパティに以下のキーワードとリテラル文字を設定することで、書式を作成します。HeaderFormatプロパティで設定した書式を有効にするには、UseHeaderFormatプロパティをTrueにします。
キーワード | 説明 |
---|---|
g | 年号の頭文字をアルファベットで表示(M、T、S、H、R) |
gg | 年号の頭文字を漢字で表示(明、大、昭、平、令) |
ggg | 年号の正式名称を漢字で表示(明治、大正、昭和、平成、令和) |
e | 和暦年を2桁で表示(先頭に0を付けない) |
ee | 和暦年を2桁で表示(先頭に0を付ける) |
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)) | キーワードをリテラル文字として表示 |
|
次のサンプルコードはヘッダの書式を設定する例です。
GcDateTime1.DropDownCalendar.ShowHeader = True GcDateTime1.DropDownCalendar.HeaderHeight = 25 GcDateTime1.DropDownCalendar.HeaderFormat = "ggg e年 M月"
gcDateTime1.DropDownCalendar.ShowHeader = true; gcDateTime1.DropDownCalendar.HeaderHeight = 25; gcDateTime1.DropDownCalendar.HeaderFormat = "ggg e年 M月";
CalendarType プロパティがCalendarType.YearMonth (年-月カレンダー)のときの書式設定には、 YearMonthFormat プロパティが参照するYearMonthFormat オブジェクトを使用します。
YearMonthFormatオブジェクトのMonthFormat およびYearFormat プロパティにキーワードとリテラル文字を設定することで、月の書式、年の書式をそれぞれ作成します。
キーワード | 説明 |
---|---|
M | 月を2桁の数字で表示(先頭に0を付けない) |
MM | 月を2桁の数字で表示(先頭に0を付ける) |
MMM | 月を省略形で表示 (DateTimeFormatInfo.AbbreviatedMonthNames() で指定された形式) |
MMMM | 月を正式名称で表示 (DateTimeFormatInfo.MonthNames()で指定された形式) |
キーワード | 説明 |
---|---|
g | 年号の頭文字をアルファベットで表示(M、T、S、H、R) |
gg | 年号の頭文字を漢字で表示(明、大、昭、平、令) |
ggg | 年号の正式名称を漢字で表示(明治、大正、昭和、平成、令和) |
e | 和暦年を2桁で表示(先頭に0を付けない) |
ee | 和暦年を2桁で表示(先頭に0を付ける) |
E | 和暦年を2桁で表示し開始年を元と表示(先頭に0を付けない) (例:平成元年) |
EE | 和暦年を2桁で表示し開始年を元と表示(先頭に0を付ける) (例:平成元年) |
y | 年を2桁で表示(先頭に0を付けない) |
yy | 年を2桁で表示(先頭に0を付ける) |
yyy | 年を4桁で表示(先頭に0を付けない) |
yyyy | 年を4桁で表示(先頭に0を付ける) |
|
次のサンプルコードは、年-月カレンダーの表示書式を設定する方法を示します。
GcDateTime1.DropDownCalendar.CalendarType = GrapeCity.Win.Editors.CalendarType.YearMonth GcDateTime1.DropDownCalendar.YearMonthFormat.YearFormat = "ggg e年" GcDateTime1.DropDownCalendar.YearMonthFormat.MonthFormat = "MM月"
gcDateTime1.DropDownCalendar.CalendarType = GrapeCity.Win.Editors.CalendarType.YearMonth; gcDateTime1.DropDownCalendar.YearMonthFormat.YearFormat = "ggg e年"; gcDateTime1.DropDownCalendar.YearMonthFormat.MonthFormat = "MM月";