Class
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:

cs-api-definition
public class DataFormGridLayout : DataFormLayout

Inheritance: objectDataFormLayoutDataFormGridLayout

Constructors

DataFormGridLayout()

Declaration

cs-api-definition
public DataFormGridLayout()

Fields

ColumnCountProperty

Identifies the ColumnCount property.

Declaration

cs-api-definition
public static readonly BindableProperty ColumnCountProperty

Field Value

BindableProperty

ColumnSpacingProperty

Identifies the ColumnSpacing property.

Declaration

cs-api-definition
public static readonly BindableProperty ColumnSpacingProperty

Field Value

BindableProperty

RowSpacingProperty

Identifies the RowSpacing property.

Declaration

cs-api-definition
public static readonly BindableProperty RowSpacingProperty

Field Value

BindableProperty

Properties

ColumnCount

Gets or sets the number of columns in the grid.

Declaration

cs-api-definition
public int ColumnCount { get; set; }

Property Value

int

ColumnSpacing

Specifies the spacing in pixels between the columns in the grid.

Declaration

cs-api-definition
public double ColumnSpacing { get; set; }

Property Value

double

RowSpacing

Specifies the spacing in pixels between the rows in the grid.

Declaration

cs-api-definition
public double RowSpacing { get; set; }

Property Value

double