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

ドロップダウンカレンダーで選択可能な日付の最大値を取得または設定します。
構文
'宣言
 
Public Property MaxDate As Nullable(Of Date)
public Nullable<DateTime> MaxDate {get; set;}

プロパティ値

ドロップダウンカレンダーの内部間隔を示す System.Drawing.Size 値。
例外
例外解説
System.ArgumentNullException値はnull 参照 (Visual Basicでは Nothing)です。
System.ArgumentOutOfRangeException値はMinDate未満です。
解説
このプロパティは最大日付値を取得します。その値は MinDate より大きい必要があります。
使用例
次のサンプルコードは、ドロップダウンカレンダーに表示できる最大日付を設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType gcDateTimeCell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
gcDateTimeCell1.DropDownCalendar.MinDate = new System.DateTime(2010, 1, 1);
gcDateTimeCell1.DropDownCalendar.MaxDate = new System.DateTime(2100, 1, 1);
fpSpread1.Sheets[0].Cells[1, 1].CellType = gcDateTimeCell1;
Dim gcDateTimeCell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
gcDateTimeCell1.DropDownCalendar.MinDate = New System.DateTime(2010, 1, 1)
gcDateTimeCell1.DropDownCalendar.MaxDate = New System.DateTime(2100, 1, 1)
fpSpread1.Sheets(0).Cells(1, 1).CellType = gcDateTimeCell1
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© MESCIUS inc. All rights reserved.