GrapeCity SPREAD for WPF 2.0J
FieldSet プロパティ (DateTimeCellType)

DateTimeCellType のフィールドコレクションを示す GrapeCity.Windows.SpreadGrid.Editors.DateFieldSet を取得または設定します。
構文
'Declaration
 
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 メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.