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

ヘッダの書式文字列を取得または設定します。
構文
'宣言
 
Public Property HeaderFormat As String
public string HeaderFormat {get; set;}

プロパティ値

項目のインデックスを示す整数System.String値。
既定値は MMMM yyy です。
解説
DropDownCalendar.UseHeaderFormat プロパティが true の場合、このプロパティによって指定された書式を使用してヘッダのテキストが表示されます。
使用例
次のサンプルコードは、HeaderFormatプロパティを使用します。
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.