Skip to main content
A newer version of this page is available. .

MapItemsLoadedEventArgs Class

Provides data for the LayerBase.DataLoaded event of the VectorItemsLayer.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v18.2.dll

Declaration

public class MapItemsLoadedEventArgs :
    DataLoadedEventArgs

Remarks

An instance of the MapItemsLoadedEventArgs class with appropriate settings is automatically created and passed to the corresponding event’s handler.

Example

void vectorLayer_DataLoaded(object sender, DataLoadedEventArgs e) {
    MapItemsLoadedEventArgs args = e as MapItemsLoadedEventArgs;
    if (args == null) return;

    lLayerState.Text = args.Items.Count().ToString() + " items loaded.";
}

Inheritance

Object
EventArgs
DataLoadedEventArgs
MapItemsLoadedEventArgs
See Also