Back to Devexpress

DxGridLayoutItem.Column Property

blazor-devexpress-dot-blazor-dot-dxgridlayoutitem-c161fccc.md

latest1.4 KB
Original Source

DxGridLayoutItem.Column Property

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

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
Int320

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 additional information how to position layout items.

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

Run Demo

See Also

DxGridLayoutItem Class

DxGridLayoutItem Members

DevExpress.Blazor Namespace