This event fires when the map is double clicked. "DoubleClick" is also fired, but this event provides mouse coordinates in both projected and unprojected form in addition.
Namespace: MapWinView
Assembly: MapWinView (in MapWinView.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| Public Delegate Sub MapView.DoubleClickHandlerEx( _ ByVal PixelX As Integer, _ ByVal PixelY As Integer, _ ByVal ProjX As Double, _ ByVal ProjY As Double, _ ByVal MouseButton As MouseButtons _ ) |
| C# |
|---|
| public delegate void MapView.DoubleClickHandlerEx( int PixelX, int PixelY, double ProjX, double ProjY, MouseButtons MouseButton ) |
| C++ |
|---|
| public delegate void MapView.DoubleClickHandlerEx( int PixelX, int PixelY, double ProjX, double ProjY, MouseButtons MouseButton ) |
| J# |
|---|
| /** delegate */ public delegate void MapView.DoubleClickHandlerEx( int PixelX, int PixelY, double ProjX, double ProjY, MouseButtons MouseButton ) |
| JScript |
|---|