PowerTools SPREAD for Windows Forms 8.0J
CalendarDimensions プロパティ (DropDownCalendar)


ドロップダウンカレンダーに表示する月数または年数を取得または設定します。
構文
'Declaration
 
Public Property CalendarDimensions As Size
'使用法
 
Dim instance As DropDownCalendar
Dim value As Size
 
instance.CalendarDimensions = value
 
value = instance.CalendarDimensions
public Size CalendarDimensions {get; set;}

プロパティ値

垂直方向および水平方向の月数または年数を表すSize値。
例外
例外説明
System.ArgumentException値が有効ではありません。
解説
一度に表示されるのは1暦年だけで、表示できる月数の最大値は12です。列と行の有効な組み合わせは積の最大値が12であり、12を超える値は許可されません。
次のサンプルコードは、CalendarDimensions プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType datecell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
fpSpread1.Sheets[0].Cells[0, 0].CellType = datecell;
datecell.DropDownCalendar.BackColor = Color.Red;
datecell.DropDownCalendar.CalendarDimensions = new Size(3, 1);
datecell.DropDownCalendar.Font = new Font("Arial", 10, FontStyle.Bold);
datecell.DropDown.AllowDrop = true;
datecell.DropDown.AllowResize = true;
datecell.DropDown.AutoDropDown = true;
datecell.DefaultActiveField = datecell.Fields[2];
Dim datecell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
FpSpread1.Sheets(0).Cells(0, 0).CellType = datecell
datecell.DropDownCalendar.BackColor = Color.Red
datecell.DropDownCalendar.CalendarDimensions = New Size(3, 1)
datecell.DropDownCalendar.Font = New Font("Arial", 10, FontStyle.Bold)
datecell.DropDown.AllowDrop = True
datecell.DropDown.AllowResize = True
datecell.DropDown.AutoDropDown = True
datecell.DefaultActiveField = datecell.Fields(2)
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.