This event fires when the map is clicked. "Click" 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.ClickHandlerEx( _ 
   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.ClickHandlerEx(
   int PixelX,
   int PixelY,
   double ProjX,
   double ProjY,
   MouseButtons MouseButton
)
C++
public delegate void MapView.ClickHandlerEx(
   int PixelX,
   int PixelY,
   double ProjX,
   double ProjY,
   MouseButtons MouseButton
)
J#
/** delegate */
public delegate void MapView.ClickHandlerEx(
   int PixelX,
   int PixelY,
   double ProjX,
   double ProjY,
   MouseButtons MouseButton
)
JScript
JScript suports the use of delegates, but not the declaration of new ones.

See Also