MESCIUS SPREAD for Windows Forms 15.0J
FirstMonthInView プロパティ (DropDownCalendar)
使用例 

ドロップダウンカレンダーに表示される最初の月を取得または設定します。
構文
'宣言
 
Public Property FirstMonthInView As Months
public Months FirstMonthInView {get; set;}

プロパティ値

曜日を示すMonths列挙値。
既定値は Months.Default です。
解説
CalendarTypeMonthDayで、に12か月が表示される場合、このプロパティは最初に表示される月を指定します。値がMonths.Defaultでない場合は、年単位でスクロールします。
使用例
次のサンプルコードは、カレンダービューの最初の月を指定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType gcDateTimeCell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
gcDateTimeCell1.DropDownCalendar.CalendarType = GrapeCity.Win.Spread.InputMan.CellType.CalendarType.MonthDay;
gcDateTimeCell1.DropDownCalendar.FirstMonthInView = GrapeCity.Win.Spread.InputMan.CellType.Months.October;
gcDateTimeCell1.DropDownCalendar.CalendarDimensions = new Size(3, 4);
gcDateTimeCell1.DropDownCalendar.InnerSpace = new System.Drawing.Size(5, 5);
fpSpread1.Sheets[0].Cells[1, 1].CellType = gcDateTimeCell1;
Dim gcDateTimeCell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
gcDateTimeCell1.DropDownCalendar.CalendarType = GrapeCity.Win.Spread.InputMan.CellType.CalendarType.MonthDay
gcDateTimeCell1.DropDownCalendar.FirstMonthInView = GrapeCity.Win.Spread.InputMan.CellType.Months.October
gcDateTimeCell1.DropDownCalendar.CalendarDimensions = New Size(3, 4)
gcDateTimeCell1.DropDownCalendar.InnerSpace = New System.Drawing.Size(5, 5)
fpSpread1.Sheets(0).Cells(1, 1).CellType = gcDateTimeCell1
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© MESCIUS inc. All rights reserved.