PowerTools InputMan for ASP.NET 8.0J
YearFormat プロパティ
使用例 

年-月カレンダーの年の書式を取得または設定します。
構文
Public Property YearFormat As String
public string YearFormat {get; set;}

プロパティ値

既定値:yyy
解説
書式文字列は以下のキーワードとリテラル文字から構成されます。
キーワード 説明
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を付ける)
キーワード"e"または"ee"を使用する場合は、元号を表すキーワード"g"、"gg"、または"ggg"を必ず併用してください。
使用例
次のサンプルコードは、カレンダーコントロールのGcCalendar.YearMonthFormatプロパティを設定する方法を示します。
Imports GrapeCity.Web.Input.IMCalendar 

GcCalendar1.CalendarType = CalendarType.YearMonth 
GcCalendar1.YearMonthFormat.YearFormat = "ggg e年" 
GcCalendar1.YearMonthFormat.MonthFormat = "MM月"
using GrapeCity.Web.Input.IMCalendar; 

GcCalendar1.CalendarType = CalendarType.YearMonth; 
GcCalendar1.YearMonthFormat.YearFormat = "ggg e年"; 
GcCalendar1.YearMonthFormat.MonthFormat = "MM月";
参照

YearMonthFormat クラス
YearMonthFormat メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.