バージョン

FieldSettings プロパティ (DataPresenterBase)

このコントロールですべてのフィールドでデフォルト設定を保持します。
シンタックス
'宣言
 
Public Property FieldSettings As FieldSettings
public FieldSettings FieldSettings {get; set;}
解説

FieldSettings は以下の 3 つのプロパティから公開されます。

フィールドの説明については、開発者ガイドの「フィールド」を参照してください。

FieldSettings オブジェクトの説明については、開発者ガイドの「フィールド設定」を参照してください。

どのようにこのオブジェクトが使用されるかの説明については、開発者ガイドの「操作の理論」を参照してください。

使用例
The following example demonstrates how to initialize settings for the FieldSettings of the DataPresenterBase. This provides default values for the settings of all fields within the control. This can then be overriden using the FieldSettings of the FieldLayout for all fields within the FieldLayout or on the Settings property of the Field.
<igDP:XamDataGrid BindToSampleData="True">
    
<igDP:XamDataGrid.FieldSettings>
        
<igDP:FieldSettings
                
AllowResize="False" 
                
CellWidth="200" />
    
</igDP:XamDataGrid.FieldSettings>
</igDP:XamDataGrid>
参照