PowerTools InputMan for ASP.NET 8.0J
MinDate プロパティ (DropDownCalendar)
使用例 

ドロップダウンカレンダーで選択可能な日付の最小値を取得または設定します。
構文
Public Property MinDate As DateTimeEx
public DateTimeEx MinDate {get; set;}

プロパティ値

既定値:GrapeCity.Web.Input.Core.DateTimeEx.MinValue
例外
例外解説
System.ArgumentOutOfRangeExceptionMaxDateプロパティより後の日付が設定されています。
解説
MinDateプロパティで設定した日付を超えた日付にフォーカス枠を移動することはできません。

選択可能な日付の最大値は、MaxDateプロパティで設定します。
使用例
次のサンプルコードは、カレンダーで選択可能な最大と最小の日付を設定する方法を示します。
Imports GrapeCity.Web.Input.Core

GcDateTime1.DropDownCalendar.MaxDate = DateTimeEx.Parse("2010/12/31")
GcDateTime1.DropDownCalendar.MinDate = DateTimeEx.Parse("1950/01/01")
using GrapeCity.Web.Input.Core;

GcDateTime1.DropDownCalendar.MaxDate = DateTimeEx.Parse("2010/12/31");
GcDateTime1.DropDownCalendar.MinDate = DateTimeEx.Parse("1950/01/01");
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.