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

日付領域のマージンを取得または設定します。
構文
Public Property MonthMargins As Margins
public Margins MonthMargins {get; set;}

プロパティ値

既定値:GrapeCity.Web.Input.Core.Margins(8,8,0,0)
解説
MonthMarginsプロパティは、表示領域の境界と日付領域の間(左右と下)、またはヘッダと曜日タイトルの間(上)のマージンを設定します。
使用例
次のサンプルコードは、縦横それぞれ2か月分のドロップダウンカレンダーを表示し、表示領域と日付領域の各マージン、および月と月の間隔を設定する方法を示します。
Imports GrapeCity.Web.Input.Core

' 縦横2か月分、合計4か月のカレンダーを表示します。
GcDateTime1.DropDownCalendar.CalendarDimensions = New Size(2, 2)
' 表示領域のマージンを設定します。
GcDateTime1.DropDownCalendar.CalendarMargins = New Margins(3, 3, 3, 3)
' 日付領域のマージンを設定します。
GcDateTime1.DropDownCalendar.MonthMargins = New Margins(3, 3, 3, 3)
' 月と月の間隔(縦方向と横方向)を設定します。
GcDateTime1.DropDownCalendar.MonthPadding = New Size(2, 2)
using GrapeCity.Web.Input.Core;

// 縦横2か月分、合計4か月のカレンダーを表示します。
GcDateTime1.DropDownCalendar.CalendarDimensions = new Size(2, 2);
// 表示領域のマージンを設定します。
GcDateTime1.DropDownCalendar.CalendarMargins = new Margins(3, 3, 3, 3);
// 日付領域のマージンを設定します。
GcDateTime1.DropDownCalendar.MonthMargins = new Margins(3, 3, 3, 3);
// 月と月の間隔(縦方向と横方向)を設定します。
GcDateTime1.DropDownCalendar.MonthPadding = new Size(2, 2);
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.