PowerTools SPREAD for Windows Forms 10.0J
UseHeaderFormat プロパティ (DropDownCalendar)


ヘッダテキストを表示するために HeaderFormat プロパティを使用するかどうかを取得または設定します。
構文
'Declaration
 
Public Property UseHeaderFormat As Boolean
'使用法
 
Dim instance As DropDownCalendar
Dim value As Boolean
 
instance.UseHeaderFormat = value
 
value = instance.UseHeaderFormat
public bool UseHeaderFormat {get; set;}

プロパティ値

ヘッダテキストを表示するためにHeaderFormat設定を使用する場合はtrue。それ以外の場合はfalse
デフォルト値はfalseです。
解説
このプロパティは、HeaderFormat設定を適用するかどうかを決定します。
次のサンプルコードは、UseHeaderFormatプロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.DropDownCalendar.HeaderFormat = "MM yy";
inputcell.DropDownCalendar.UseHeaderFormat = true;
inputcell.DropDownCalendar.HeaderHeight = 40;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType()
inputcell.DropDownCalendar.HeaderFormat = "MM yy"
inputcell.DropDownCalendar.UseHeaderFormat = True
inputcell.DropDownCalendar.HeaderHeight = 40
FpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
参照

DropDownCalendar クラス
DropDownCalendar メンバ

 

 


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