DxGridLayout.RowSpacing Property
In This Article
Specifies the distance between the grid layout’s rows.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(null)]
[Parameter]
public string RowSpacing { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
String | null | A CSS unit that specifies the distance between the grid layout’s rows. |
#Remarks
Razor
<DxGridLayout ColumnSpacing="8px" RowSpacing="8px">
...
</DxGridLayout>
See Also