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

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

プロパティ値

既定値:MMMM
解説
書式文字列は以下のキーワードとリテラル文字から構成されます。
キーワード 説明
M 月を2桁の数字で表示(先頭に0を付けない)
MM 月を2桁の数字で表示(先頭に0を付ける)
MMM 月を省略形で表示
(DateTimeFormatInfo.AbbreviatedMonthNames() で指定された形式)
MMMM 月を正式名称で表示
(DateTimeFormatInfo.MonthNames()で指定された形式)
使用例
次のサンプルコードは、カレンダーコントロールの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.