ColumnBase.BestFitMode Property
Gets or sets how to calculate the optimal width required for this column to completely display its contents.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
public BestFitMode BestFitMode { get; set; }
#Property Value
Type | Description |
---|---|
Best |
A mode that specifies how to calculate the optimal width required for this column to completely display its contents. |
Available values:
Name | Description |
---|---|
Default | If this mode is assigned to the |
All |
The column width is calculated based on text of all cells within this column. |
Visible |
The column width is calculated based on the values in the currently visible cells. |
Distinct |
The column width is calculated based on all distinct values in the underlying datasource. |
Smart | In this mode, the column width is calculated as Best |
#Remarks
The TableView.BestFitMode property specifies the default behavior of all columns displayed within a View. The BestFitMode property allows you to override this behavior for individual columns.