Skip to main content

DxGridLayoutItem.Column Property

Specifies a grid layout’s column where the grid layout’s item should be located.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(0)]
[Parameter]
public int Column { get; set; }

Property Value

Type Default Description
Int32 0

A zero-based column index.

Remarks

Use the Row and Column item properties to specify the row and column where the item should be located. Refer to Use Row and Column Indexes for more information how to position layout items.

<DxGridLayout>
    <Items>
        <DxGridLayoutItem Row="0" Column="0" ColumnSpan="3">
            <div>
                Content
            </div>
        </DxGridLayoutItem>
        ...
    </Items>
</DxGridLayout>            

Run Demo Watch Video

See Also