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

ドロップダウンカレンダーのサイズを自動調整するかどうかを取得または設定します。
構文
Public Property AutoSize As Boolean
public bool AutoSize {get; set;}

プロパティ値

フォントサイズを基にした適切な大きさに自動的に調整するにはTrue、それ以外はFalse。既定値はTrueです。
解説
AutoSizeプロパティを使うことで、ドロップダウンカレンダーのサイズを自動的に調整することができます。この自動調整は、設定されているフォントのサイズを基準に、すべての文字が正しく表示されるように行われます。
使用例
次のサンプルコードは、横に2か月分のカレンダーを表示し、サイズを自動調節する方法を示します。
GcDateTime1.DropDownCalendar.CalendarDimensions = New Size(2, 1)
GcDateTime1.DropDownCalendar.AutoSize = True
GcDateTime1.DropDownCalendar.CalendarDimensions = new Size(2, 1);
GcDateTime1.DropDownCalendar.AutoSize = true;
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.