MESCIUS PlusPak for Windows Forms 12.0J > PlusPakの使い方 > UIコントロール > GcCalendarコントロール > ヘッダの書式設定 |
GcCalendar コントロールのヘッダに表示できる書式の設定について解説します。
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)) | キーワードをリテラル文字として表示 |
|
次のサンプルコードはヘッダの書式を設定する例です。
GcCalendar1.ShowHeader = True GcCalendar1.HeaderHeight = 25 GcCalendar1.HeaderFormat = "ggg e年 M月"
gcCalendar1.ShowHeader = true; gcCalendar1.HeaderHeight = 25; gcCalendar1.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を付ける) |
|
次のサンプルコードは、年-月カレンダーの表示書式を設定する方法を示します。
GcCalendar1.CalendarType = GrapeCity.Win.Calendar.CalendarType.YearMonth GcCalendar1.YearMonthFormat.YearFormat = "ggg e年" GcCalendar1.YearMonthFormat.MonthFormat = "MM月"
gcCalendar1.CalendarType = GrapeCity.Win.Calendar.CalendarType.YearMonth; gcCalendar1.YearMonthFormat.YearFormat = "ggg e年"; gcCalendar1.YearMonthFormat.MonthFormat = "MM月";