Skip to main content

GridColumn.ActualWidth Property

Gets the column width. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public double ActualWidth { get; protected set; }

Property Value

Type Description
Double

A Double value that specifies the column width in density-independent pixels.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

In the grid, column widths are adjusted automatically, so that the total width of all columns matches the grid width. Changing the width of one column automatically changes the widths of other columns. To obtain the actual width of columns, use their ActualWidth property.

To change the column width, use the GridColumn.Width property. To specify the minimum width of a column, use the GridColumn.MinWidth property.

See Also