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

DXCollectionView.ItemSpanSpacing Property

Gets or sets the gap between DXCollectionView item columns/rows (depending on Orientation). This is a bindable property.

Namespace: DevExpress.Maui.CollectionView

Assembly: DevExpress.Maui.CollectionView.dll

NuGet Package: DevExpress.Maui.CollectionView

#Declaration

C#
public double ItemSpanSpacing { get; set; }

#Property Value

Type Description
Double

A value that specifies the gap between item columns/rows.

#Remarks

The following image demonstrates how the ItemSpanSpacing property affects item layout:

DevExpress CollectionView for .NET MAUI

<dxcv:DXCollectionView ...
                       ItemSpanSpacing="40">

Specify the ItemSpanCount property to define the number of layout columns in the DXCollectionView components.

Use the ItemSpacing property to define the distance between items.

See Also