PowerTools PlusPak for Windows Forms 8.0J
MaxDate プロパティ
使用例 

コントロールで選択可能な日付の最大値を取得または設定します。
構文
Public Property MaxDate As DateTimeEx
public DateTimeEx MaxDate {get; set;}

プロパティ値

コントロールに表示できる最大の日付。デフォルト値は 9999/12/31 です。
例外
例外解説
System.ArgumentNullExceptionMaxDate は null にできません。
System.ArgumentOutOfRangeExceptionMaxDateMinDate 以上にする必要があります。
使用例
次のサンプルコードは、カレンダーで選択可能な最大と最小の日付を設定する方法を示します。
Imports GrapeCity.Win.Calendar

GcCalendar1.MaxDate = DateTimeEx.Parse("2010/12/31")
GcCalendar1.MinDate = DateTimeEx.Parse("1950/01/01")
using GrapeCity.Win.Calendar;

gcCalendar1.MaxDate = DateTimeEx.Parse("2010/12/31");
gcCalendar1.MinDate = DateTimeEx.Parse("1950/01/01");
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcCalendar クラス
GcCalendar メンバ

Send Feedback