Back to Devexpress

AttributeDisplayValueEditEventHandler Delegate

corelibraries-devexpress-dot-map-733101b5.md

latest1.9 KB
Original Source

AttributeDisplayValueEditEventHandler Delegate

A method that will handle the MapItemsLayerBase.AttributeDisplayValueEdit and VectorLayerBase.AttributeDisplayValueEdit events.

Namespace : DevExpress.Map

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

NuGet Package : DevExpress.Map.Core

Declaration

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

Parameters

NameTypeDescription
senderObject

The event source. This parameter identifies the MapItemsLayerBase (WinForms) or VectorLayerBase (WPF) which raised the event.

| | e | AttributeDisplayValueEditEventArgs | |

Remarks

When creating a AttributeDisplayValueEditEventHandler 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.Map Namespace