Occurs when a mouse button is released when this tool is active.

Namespace:  ESRI.ArcGIS.Desktop.AddIns

Assembly:  ESRI.ArcGIS.Desktop.Addins (in ESRI.ArcGIS.Desktop.Addins.dll) Version: 10.0.0.0 (10.0.0.0)

Syntax

C#
protected virtual void OnMouseUp(
	Tool..::.MouseEventArgs arg
)
Visual Basic (Declaration)
Protected Overridable Sub OnMouseUp ( _
	arg As Tool..::.MouseEventArgs _
)
Visual C++
protected:
virtual void OnMouseUp(
	Tool..::.MouseEventArgs^ arg
)

Parameters

arg
Type: ESRI.ArcGIS.Desktop.AddIns..::.Tool..::.MouseEventArgs

The Tool..::.MouseEventArgs instance containing the event data.

Remarks

When creating a custom tool, write the code that performs the action when a mouse button is released when this tool is the active tool in the OnMouseUp method.

See Also