Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxGridLayoutItem.Row Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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.

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

Run Demo Watch Video

See Also