com.esri.arcgis.controls
Class IMapControlEvents2OnDoubleClickEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.esri.arcgis.controls.IMapControlEvents2OnDoubleClickEvent
All Implemented Interfaces:
Serializable

public class IMapControlEvents2OnDoubleClickEvent
extends EventObject

Description

button specifies which mouse button was pressed. 1 for the left mouse button, 2 for the right mouse button, and 4 for the middle mouse button.

shift specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some or all of these keys are pressed none, some or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, ShiftState would return 5.

x is the X coordinate, in pixels, where the mouse button was pressed referenced against the origin (0, 0) of the MapControl (the top left hand corner).

y is the Y coordinate, in pixels, where the mouse button was pressed referenced against the origin (0, 0) of the MapControl (the top left hand corner).

mapX is the X coordinate, in map units, where the mouse button was pressed referenced against the origin (bottom left hand corner) of the IMapControl2::Map. The values returned are in IMapControl2::MapUnits.

mapY is the Y coordinate, in map units, where the mouse button was pressed referenced against the origin (bottom left hand corner) of the IMapControl2::Map. The values returned are in IMapControl2::Units

Remarks

The OnDoubleClick event is triggered when the user releases and presses a mouse button and then presses and releases it again on the MapControl. If the double click does not occur within the system's double click time limit, the MapControl will recognise another OnMouseDown event. Otherwise the event sequence is as follows:

OnMouseDown
OnMouseUp
OnDoubleClick
OnMouseUp

Product Availability

Available with ArcGIS Engine.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
IMapControlEvents2OnDoubleClickEvent(Object source)
           
 
Method Summary
 int getButton()
           
 double getMapX()
           
 double getMapY()
           
 int getShift()
           
 int getX()
           
 int getY()
           
 void init(int button, int shift, int x, int y, double mapX, double mapY)
           
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IMapControlEvents2OnDoubleClickEvent

public IMapControlEvents2OnDoubleClickEvent(Object source)
Method Detail

init

public void init(int button,
                 int shift,
                 int x,
                 int y,
                 double mapX,
                 double mapY)

getButton

public final int getButton()

getShift

public final int getShift()

getX

public final int getX()

getY

public final int getY()

getMapX

public final double getMapX()

getMapY

public final double getMapY()