名前空間一覧 > GrapeCity.Web.Input.IMDate 名前空間 > GcDate クラス : MaxValue プロパティ |
例外 | 解説 |
---|---|
System.ArgumentOutOfRangeException | MinValueプロパティより前の日付が設定されています。 |
Imports GrapeCity.Web.Input.Core GcDate1.MinValue = DateTimeEx.Parse("2013/01/01") GcDate1.MaxValue = DateTimeEx.Parse("2015/12/31") GcDate1.ClientEvents.InvalidRange = "InvalidRange"
using GrapeCity.Web.Input.Core; GcDate1.MinValue = DateTimeEx.Parse("2013/01/01"); GcDate1.MaxValue = DateTimeEx.Parse("2015/12/31"); GcDate1.ClientEvents.InvalidRange = "InvalidRange";
function InvalidRange() { alert("有効範囲外の値です。"); }