Back to Devexpress

ShapesLoadedEventHandler Delegate

wpf-devexpress-dot-xpf-dot-map-93119658.md

latest1.8 KB
Original Source

ShapesLoadedEventHandler Delegate

A method that will handle the MapGeoDataAdapter.ShapesLoaded, ShapefileDataAdapter.ShapesLoaded and SvgFileDataAdapter.ShapesLoaded events.

Namespace : DevExpress.Xpf.Map

Assembly : DevExpress.Xpf.Map.v25.2.dll

NuGet Package : DevExpress.Wpf.Map

Declaration

csharp
public delegate void ShapesLoadedEventHandler(
    object sender,
    ShapesLoadedEventArgs e
);
vb
Public Delegate Sub ShapesLoadedEventHandler(
    sender As Object,
    e As ShapesLoadedEventArgs
)

Parameters

NameTypeDescription
senderObject

The event source.

| | e | ShapesLoadedEventArgs |

A ShapesLoadedEventArgs object that contains event data.

|

Remarks

When creating a ShapesLoadedEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see Events and Delegates in MSDN.

See Also

DevExpress.Xpf.Map Namespace