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

ComboBoxCellTypeGrapeCity.Windows.SpreadGrid.Editors.DateDisplayFieldSet を取得または設定します。
構文
'Declaration
 
Public Property DisplayFieldSet As DateDisplayFieldSet
public DateDisplayFieldSet DisplayFieldSet {get; set;}

プロパティ値

表示フィールドセットのコレクションを示す GrapeCity.Windows.SpreadGrid.Editors.DateDisplayFieldSet オブジェクト。
解説
新しい表示フィールドセットを設定することで、GrapeCity.Windows.SpreadGrid.Editors.GcDateTime にキーボードフォーカスがないときに GrapeCity.Windows.SpreadGrid.Editors.GcDateTime の現在の値を異なるパターンで表示できます。また、このプロパティを通じて表示フィールドのコレクションにアクセスすることもできます。
次のサンプルは 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.