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


選択されている日付のスタイルを取得または設定します。
構文
'Declaration
 
Public Property SelectionStyle As SubStyle
'使用法
 
Dim instance As DropDownCalendar
Dim value As SubStyle
 
instance.SelectionStyle = value
 
value = instance.SelectionStyle
public SubStyle SelectionStyle {get; set;}

プロパティ値

選択スタイルを示す SubStyle 値。
解説
このプロパティは、選択されている日付セルまたは月セルの表示スタイルを取得します。
次のサンプルコードは、選択スタイルを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType gcDateTimeCell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
gcDateTimeCell1.DropDownCalendar.SelectionStyle = new GrapeCity.Win.Spread.InputMan.CellType.SubStyle(Color.Azure, Color.DarkGreen, true, false);
gcDateTimeCell1.DropDownCalendar.AllowSelection = GrapeCity.Win.Spread.InputMan.CellType.AllowSelection.Anyday;
fpSpread1.Sheets[0].Cells[1, 1].CellType = gcDateTimeCell1;
Dim gcDateTimeCell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
gcDateTimeCell1.DropDownCalendar.SelectionStyle = New GrapeCity.Win.Spread.InputMan.CellType.SubStyle(Color.Azure, Color.DarkGreen, True, False)
gcDateTimeCell1.DropDownCalendar.AllowSelection = GrapeCity.Win.Spread.InputMan.CellType.AllowSelection.Anyday
FpSpread1.Sheets(0).Cells(1, 1).CellType = gcDateTimeCell1
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


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