GrapeCity SPREAD for Windows Forms 11.0J
InnerSpace プロパティ (DropDownCalendar)


複数のカレンダー間の垂直および水平方向の距離を取得または設定します。
構文
'Declaration
 
Public Property InnerSpace As Size
'使用法
 
Dim instance As DropDownCalendar
Dim value As Size
 
instance.InnerSpace = value
 
value = instance.InnerSpace
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 メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.