DxGridLayoutItem.RowSpan Property
Specifies the number of rows the grid layout’s item occupies.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(1)]
[Parameter]
public int RowSpan { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Int32 | 1 | 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.
<DxGridLayout>
<Items>
<DxGridLayoutItem Row="0" Column="0" RowSpan="2">
<Template>
<div>
Content
</div>
</Template>
</DxGridLayoutItem>
...
</Items>
</DxGridLayout>
See Also