Back to Devexpress

DxGridLayoutItem.RowSpan Property

blazor-devexpress-dot-blazor-dot-dxgridlayoutitem-4d8b8a23.md

latest1.3 KB
Original Source

DxGridLayoutItem.RowSpan Property

Specifies the number of rows the grid layout’s item occupies.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(1)]
[Parameter]
public int RowSpan { get; set; }

Property Value

TypeDefaultDescription
Int321

The number of rows.

|

Remarks

A grid layout’s item can span multiple rows and columns. Use the RowSpan property to specify how many rows the item occupies.

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