Skip to main content

IMapDataAdapter.Items Property

Provides access to the collection of data adapter items.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

IEnumerable<MapItem> Items { get; }

Property Value

Type Description
IEnumerable<MapItem>

An object of a class implementing the IEnumerable<T> interface.

Remarks

The SourceItems collection is a collection whose items are loaded from a data source, file or specified manually (depending on the data adapter type).

The Items collection is a displayed items collection. This collection contains representative clusters if clustering is used. Or, the collection stores the same items as the SourceItems collection if clustering is disabled.

See Also