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

ControlToCompareプロパティが設定されていないときに比較する日付を取得または設定します。
構文
Public Property DateToCompare As Date
public DateTime DateToCompare {get; set;}

プロパティ値

既定値:System.DateTime.Now(現在のシステム日付)
例外
例外解説
System.ArgumentOutOfRangeException 100/1/1より前の日付が設定されています。
解説
DateToCompareプロパティは、ControlToCompareプロパティが 設定されていないときに、検証する入力コントロールにユーザーが入力した日付の比較対象となる日付を指定します。

ControlToCompareプロパティとDateToCompareプロパティの両方を設定した場合は、ControlToCompareプロパティが優先されます。
使用例
次のサンプルコードは、DateToCompareプロパティを使用して日付時刻コントロールを検証する方法を示します。
GcDateDifferenceValidator1.DateToCompare = DateTime.Parse("2015/12/31")
GcDateDifferenceValidator1.ControlToValidate = "GcDateTime1"
GcDateDifferenceValidator1.ErrorMessage = "日付が不正です。"
GcDateDifferenceValidator1.DateToCompare = DateTime.Parse("2015/12/31");
GcDateDifferenceValidator1.ControlToValidate = "GcDateTime1";
GcDateDifferenceValidator1.ErrorMessage = "日付が不正です。";
参照

GcDateDifferenceValidator クラス
GcDateDifferenceValidator メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.