ESRI.ArcGIS.ADF.Local
OnMouseUp Method
See Also  Send Feedback
ESRI.ArcGIS.ADF.BaseClasses Namespace > BaseTool Class : OnMouseUp Method




Button
Specifies which mouse button is released; 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, Shift would be 5.
X
The X coordinate, in device units, of the location of the mouse event. See the OnMouseUp Event for more details.
Y
The Y coordinate, in device units, of the location of the mouse event. See the OnMouseUp Event for more details.
This method is called when a mouse button is released, when this tool is active.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub OnMouseUp( _
   ByVal Button As Integer, _
   ByVal Shift As Integer, _
   ByVal X As Integer, _
   ByVal Y As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As BaseTool
Dim Button As Integer
Dim Shift As Integer
Dim X As Integer
Dim Y As Integer
 
instance.OnMouseUp(Button, Shift, X, Y)
C# 
public virtual void OnMouseUp( 
   int Button,
   int Shift,
   int X,
   int Y
)

Parameters

Button
Specifies which mouse button is released; 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, Shift would be 5.
X
The X coordinate, in device units, of the location of the mouse event. See the OnMouseUp Event for more details.
Y
The Y coordinate, in device units, of the location of the mouse event. See the OnMouseUp Event for more details.

Remarks

Note to inheritors: Override the OnMouseUp method if you need to perform some action when the OnMouseUp event is raised when the tool is active.

See Also

© 2010 All Rights Reserved.