Skip to main content
A newer version of this page is available. .

GridColumn.Width Property

Gets or sets the column’s width.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

Declaration

public GridLength Width { get; set; }

Property Value

Type
Xamarin.Forms.GridLength

Remarks

DataGridView adjusts column widths, so that the total width of all columns matches the grid width. When you set the Width property for a column, the grid automatically changes widths of other columns. To specify the minimum and maximum width that can be assigned to a column, use the MinWidth and MaxWidth properties.

If the total width of all columns exceeds the grid width, horizontal scrolling is enabled and users can scroll grid columns. If you want a column (or columns) to be always visible onscreen (regardless of scrolling), set the column’s FixedStyle property.

See Also