Wgs84MapOnMapDoubleClicked Method |
Raises the MapDoubleClicked event.
Namespace: ZylSoft.Gps.MapAssembly: ZylMap (in ZylMap.dll) Version: 1.8.0.0 (1.0.0.0)
Syntaxprotected virtual void OnMapDoubleClicked(
DmsPositionEventArgs e
)
Protected Overridable Sub OnMapDoubleClicked (
e As DmsPositionEventArgs
)
protected:
virtual void OnMapDoubleClicked(
DmsPositionEventArgs^ e
)
abstract OnMapDoubleClicked :
e : DmsPositionEventArgs -> unit
override OnMapDoubleClicked :
e : DmsPositionEventArgs -> unit Parameters
- e DmsPositionEventArgs
-
A DmsPositionEventArgs that contains the event data.
Remarks
Raising an event invokes the event handler through a delegate.
The method also allows derived classes to handle the event without
attaching a delegate. This is the preferred technique for handling the event
in a derived class.
Notes to Inheritors: When overriding in a derived class, be sure to
call the base class's method so that registered delegates
receive the event.
See Also