PowerTools SPREAD for Windows Forms 8.0J
MaxDate プロパティ (GcDateTimeCellType)


スピン設定を使用してコントロールのフィールドまたは値を変更するときの許容される最大値を取得または設定します。
構文
'Declaration
 
Public Property MaxDate As Date
'使用法
 
Dim instance As GcDateTimeCellType
Dim value As Date
 
instance.MaxDate = value
 
value = instance.MaxDate
public DateTime MaxDate {get; set;}

プロパティ値

許容される最大値を示す System.DateTime 値。
例外
例外説明
System.ArgumentOutOfRangeException値が GcDateTime.MinDate 未満です。
次のサンプルコードは、MaxDate プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
datecell.MaxDate = new System.DateTime(9999, 12, 31);
datecell.MinDate = DateTime.Now;
datecell.MaxMinBehavior = GrapeCity.Win.Spread.InputMan.CellType.MaxMinBehavior.Clear;
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
datecell.MaxDate = new System.DateTime(9999, 12, 31)
datecell.MinDate = DateTime.Now
datecell.MaxMinBehavior = GrapeCity.Win.Spread.InputMan.CellType.MaxMinBehavior.Clear
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
参照

GcDateTimeCellType クラス
GcDateTimeCellType メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.