Back to Devexpress

DxGridLayoutItem.Row Property

blazor-devexpress-dot-blazor-dot-dxgridlayoutitem-0148ad1c.md

latest1.5 KB
Original Source

DxGridLayoutItem.Row Property

Specifies a grid layout’s row 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 Row { get; set; }

Property Value

TypeDefaultDescription
Int320

A zero-based row index.

|

Remarks

Use the Row and Column item properties to specify a 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" RowSpan="2">
            <Template>
                <div>
                    Content
                </div>
            </Template>
        </DxGridLayoutItem>
        @* ... *@
    </Items>
</DxGridLayout>

Run Demo

See Also

DxGridLayoutItem Class

DxGridLayoutItem Members

DevExpress.Blazor Namespace