Defines the possible ways a DataGridColumn may be sized within a RadDataGrid instance.
Definition
Namespace:Telerik.Maui.Controls.DataGrid
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public enum DataGridColumnSizeMode
Fields
The columns is sized to its desired width. That is the maximum desired width of all associated cells.
C#
Auto = 1
The column has a fixed width as defined by its Width property.
C#
Fixed = 2
The column is stretched to the available width proportionally to its desired width.
C#
Stretch = 0