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

GridColumnFixedWidthType Enum

Lists values that specify the mode used to manage the width of individual columns.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v20.2.Core.dll

NuGet Packages: DevExpress.Dashboard.Core, DevExpress.WindowsDesktop.Dashboard.Core

Declaration

public enum GridColumnFixedWidthType

Members

Name Description
Weight

The column has the fixed relative width. Use the GridColumnBase.Weight property to specify the column relative width.

FitToContent

The column has the fixed width required to completely display its content.

FixedWidth

The column has a fixed width. Use the GridColumnBase.FixedWidth property to specify the fixed column width.

Remarks

Values listed in this enumeration are used to set the GridColumnBase.WidthType property.

To specify the width of individual columns manually, set the GridOptions.ColumnWidthMode property to GridColumnWidthMode.Manual.

See Also