MESCIUS SPREAD for Windows Forms 15.0J
InnerSpace プロパティ (DropDownCalendar)
使用例 

複数のカレンダー間の垂直および水平方向の距離を取得または設定します。
構文
'宣言
 
Public Property InnerSpace As Size
public Size InnerSpace {get; set;}

プロパティ値

ドロップダウンカレンダーの内部間隔を示す System.Drawing.Size 値。
解説
CalendarDimensions プロパティが複数のカレンダーを表示するよう設定されている場合、このプロパティは各カレンダー間の間隔を決定します。
使用例
次のサンプルコードは、カレンダーの月の周囲のスペースを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType gcDateTimeCell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
gcDateTimeCell1.DropDownCalendar.CalendarType = GrapeCity.Win.Spread.InputMan.CellType.CalendarType.MonthDay;
gcDateTimeCell1.DropDownCalendar.FirstMonthInView = GrapeCity.Win.Spread.InputMan.CellType.Months.October;
gcDateTimeCell1.DropDownCalendar.CalendarDimensions = new Size(3, 4);
gcDateTimeCell1.DropDownCalendar.InnerSpace = new System.Drawing.Size(5, 5);
fpSpread1.Sheets[0].Cells[1, 1].CellType = gcDateTimeCell1;
Dim gcDateTimeCell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
gcDateTimeCell1.DropDownCalendar.CalendarType = GrapeCity.Win.Spread.InputMan.CellType.CalendarType.MonthDay
gcDateTimeCell1.DropDownCalendar.FirstMonthInView = GrapeCity.Win.Spread.InputMan.CellType.Months.October
gcDateTimeCell1.DropDownCalendar.CalendarDimensions = New Size(3, 4)
gcDateTimeCell1.DropDownCalendar.InnerSpace = New System.Drawing.Size(5, 5)
fpSpread1.Sheets(0).Cells(1, 1).CellType = gcDateTimeCell1
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© MESCIUS inc. All rights reserved.