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


ナビゲータバーにズームボタンを表示するかどうかを示す値を取得または設定します。
構文
'Declaration
 
Public Property ShowZoomButton As Boolean
'使用法
 
Dim instance As DropDownCalendar
Dim value As Boolean
 
instance.ShowZoomButton = value
 
value = instance.ShowZoomButton
public bool ShowZoomButton {get; set;}

プロパティ値

bool 値。ナビゲータバーにズームボタンを表示する場合は true。それ以外の場合は false
次のサンプルコードは、ShowZoomButtonプロパティを設定します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType gcDateTimeCell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
gcDateTimeCell1.DropDownCalendar.ShowWeekNumber = true;
gcDateTimeCell1.DropDownCalendar.ShowZoomButton = true;
fpSpread1.Sheets[0].Cells[1, 1].CellType = gcDateTimeCell1;
Dim gcDateTimeCell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
gcDateTimeCell1.DropDownCalendar.ShowWeekNumber = True
gcDateTimeCell1.DropDownCalendar.ShowZoomButton = True
FpSpread1.Sheets(0).Cells(1, 1).CellType = gcDateTimeCell1
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


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