Back to Devexpress

ColumnBase.BestFitModeOnSourceChange Property

wpf-devexpress-dot-xpf-dot-grid-dot-columnbase-947975eb.md

latest2.8 KB
Original Source

ColumnBase.BestFitModeOnSourceChange Property

Gets or sets how to calculate the optimal width required for this column to completely display its contents when the grid’s ItemsSource is changed.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public BestFitMode? BestFitModeOnSourceChange { get; set; }
vb
Public Property BestFitModeOnSourceChange As BestFitMode?

Property Value

TypeDefaultDescription
Nullable<BestFitMode>null

A mode that specifies how to calculate the optimal width.

|

Available values:

NameDescription
Default

If this mode is assigned to the ColumnBase.BestFitMode of a grid column, this means that it obtains its value from the TableView.BestFitMode property of the owner view.

| | AllRows |

The column width is calculated based on text of all cells within this column.

| | VisibleRows |

The column width is calculated based on the values in the currently visible cells.

| | DistinctValues |

The column width is calculated based on all distinct values in the underlying datasource.

| | Smart |

In this mode, the column width is calculated as BestFitMode.AllRows if the total count of rows is less than 3,000 , and as BestFitMode.DistinctValues if the total count of rows is greater than or equal to 3,000. Also, if the Smart mode is enabled, the TableView.CustomBestFit is raised, thus allowing you to manually calculate the column width.

|

Remarks

If the BestFitModeOnSourceChange property is set to null , the GridControl does not calculate the optimal width when the source is changed.

See Also

Move and Resize Columns

ColumnBase Class

ColumnBase Members

DevExpress.Xpf.Grid Namespace