SPREAD for WPF 3.0J - GcSpreadGrid
FieldSet プロパティ (DateTimeCellType)
使用例 

GrapeCity.Windows.SpreadGrid 名前空間 > DateTimeCellType クラス : FieldSet プロパティ
DateTimeCellType のフィールドコレクションを示す GrapeCity.Windows.SpreadGrid.Editors.DateFieldSet を取得または設定します。
シンタックス
'宣言
 
Public Property FieldSet As DateFieldSet
public DateFieldSet FieldSet {get; set;}

プロパティ値

FieldSet プロパティの GrapeCity.Windows.SpreadGrid.Editors.DateFieldSet 値。
解説
ユーザーはこのプロパティによって DateTimeCellType のフィールドを独自に定義できます。このプロパティを設定するにはいくつかの方法があります。たとえば、GrapeCity.Windows.SpreadGrid.Editors.DateFieldSet インスタンスを作成したり、XAML コードで Style によって設定したりすることが可能です。
使用例
次のサンプルは DateTimeCellType に表示用フィールドと編集用フィールドを設定する方法を説明します。
<sg:GcSpreadGrid>
<sg:GcSpreadGrid.Columns>
<sg:Column>
<sg:Column.CellType>
<sg:DateTimeCellType>
<sg:DateTimeCellType.DisplayFieldSet>
<sg:DateDisplayFieldSet>
<sg:DateEraDisplayField/>
<sg:DateEraYearDisplayField/>
<sg:DateLiteralDisplayField Text="年"/>
<sg:DateMonthDisplayField/>
<sg:DateLiteralDisplayField Text="月"/>
</sg:DateDisplayFieldSet>
</sg:DateTimeCellType.DisplayFieldSet>

<sg:DateTimeCellType.FieldSet>
<sg:DateFieldSet>
<sg:DateYearField/>
<sg:DateLiteralField Text="-"/>
<sg:DateMonthField/>
<sg:DateLiteralField Text="-"/>
<sg:DateDayField/>
</sg:DateFieldSet>
</sg:DateTimeCellType.FieldSet>
</sg:DateTimeCellType>
</sg:Column.CellType>
</sg:Column>
</sg:GcSpreadGrid.Columns>
</sg:GcSpreadGrid>
参照

DateTimeCellType クラス
DateTimeCellType メンバ