バージョン

CellWidth プロパティ

デバイスに依存しないユニットのセルの幅 (ユニットあたり 1/96 インチ)
シンタックス
'宣言
 
Public Property CellWidth As Double
public double CellWidth {get; set;}
解説

セルの幅は 6 つのユニット以上に制限されます。CellWidth をより小さい値に設定すると、セル幅が 6 になります。また、フィールドは UI で 6 ユニット以下にサイズ変更することはできません。しかし、CellMaxWidth プロパティを小さな値に設定するとこの制限は上書きされる点に注意してください。

注: この設定は GridViewSettings.Orientation が「Horizontal」で DataRecordSizingMode が「Fixed」、「IndividuallySizable」、または「SizableSynchronized」に設定されていない場合は無視されます。

使用例
The following sample demonstrates disabling resizing of the columns using the AllowResize property and defaulting the CellWidth.
<igDP:XamDataGrid BindToSampleData="True">
    
<igDP:XamDataGrid.FieldSettings>
        
<igDP:FieldSettings
                
AllowResize="False" 
                
CellWidth="200" />
    
</igDP:XamDataGrid.FieldSettings>
</igDP:XamDataGrid>
参照