DataFormGridLayout
Arranges the items of a RadDataForm in a grid layout. The grid has a pre-defined number of columns with uniform lengths. Starting from the top left corner, the items are arranged horizontally by columns, until the maximum number of columns is reached, then the process continues from the next row. Each item occupies only a single cell of the grid by default. That behavior can be overridden with the ColumnSpan and RowSpan attached properties of the type. For more information see the component.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class DataFormGridLayout : DataFormLayout
Inheritance: objectDataFormLayoutDataFormGridLayout
Constructors
public DataFormGridLayout()
Fields
ColumnCountProperty
BindableProperty
Identifies the ColumnCount property.
public static readonly BindableProperty ColumnCountProperty
ColumnSpacingProperty
BindableProperty
Identifies the ColumnSpacing property.
public static readonly BindableProperty ColumnSpacingProperty
RowSpacingProperty
BindableProperty
Identifies the RowSpacing property.
public static readonly BindableProperty RowSpacingProperty
Properties
Gets or sets the number of columns in the grid.
public int ColumnCount { get; set; }
Specifies the spacing in pixels between the columns in the grid.
public double ColumnSpacing { get; set; }
Specifies the spacing in pixels between the rows in the grid.
public double RowSpacing { get; set; }