ArcObjects Library Reference (PublisherControls)  

IARGlobeControlEvents.OnMouseUp Event

Fires when the user releases any mouse button while over the globe.

[Visual Basic .NET]
Public Event OnMouseUp As OnMouseUpEventHandler
[C#]
public event OnMouseUpEventHandler OnMouseUp

Product Availability

Available with ArcGIS Desktop. Requires Publisher Extension.

Description

The OnMouseUp event is triggered when the user releases a mouse button on the Globe display area of the ArcReaderGlobeControl. Use the event to specify actions that will occur when a given mouse button is released.

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 current view (the top left hand corner). x coordinates increase from left to right.

y is the Y coordinate, in pixels, where the mouse button was pressed referenced against the origin (0, 0) of the ArcReaderGlobeControl (the top left hand corner). y coordinates increase from top to bottom.

To find the origin of the current view use ViewLeft and ViewTop properties. To convert x and y coorindates in pixels to globe units use the IARGlobe::GetSurfacePoint method.

See Also

IARGlobeControlEvents Interface