MESCIUS SPREAD for Windows Forms 15.0J
UseHeaderFormat プロパティ (DropDownCalendar)
使用例 

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

プロパティ値

ヘッダーテキストを表示するためにHeaderFormat設定を使用する場合はtrue。 それ以外の場合はfalse
デフォルト値はfalseです。
解説
このプロパティは、ControlStyle設定を適用するかどうかを決定します。
使用例
次のサンプルコードは、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 メンバ

 

 


© MESCIUS inc. All rights reserved.