GridColumn.MaxWidth Property
Gets or sets the column’s maximum width.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
Declaration
[XtraSerializableProperty]
public double MaxWidth { get; set; }
Property Value
Type | Description |
---|---|
Double | The column’s maximum width, in density-independent pixels. |
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. To specify whether the grid should display the horizontal scrollbar, use the IsHorizontalScrollBarVisible property.