C1.WPF.DataGrid Namespace > DataGridColumn Class : Width Property |
'Declaration
Public Property Width As DataGridLength
public DataGridLength Width {get; set;}
DataGridLength supports four different modes
Type | Description |
---|---|
Pixel | The width of the column will be the same as the amount of pixels specified. |
Auto | The width of the column will be determined by the content of the cells in the columns. |
Star | The viewport space will be divided among the Star and AutoStar columns. |
AutoStar | Each column is assured to have enough space to show its content and when extra space is available it is divided among the Star and AutoStar columns. |
Notice MinWidth and MaxWidth has precedence over this property, that mean that if you set Width=100 and MinWidth=110 the actual value will be 110.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2