Skip to main content
A newer version of this page is available. .

DxGridLayoutItem.Row Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
Int32 0

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

<DxGridLayout>
    <Items>
        <DxGridLayoutItem Row="0" Column="0" RowSpan="2">
            <Template>
                <div>
                    Content
                </div>
            </Template>
        </DxGridLayoutItem>
        ...
    </Items>
</DxGridLayout>            

Run Demo Watch Video

See Also