Occurs when a key on the keyboard 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 OnKeyUp(
	Tool..::.KeyEventArgs arg
)
Visual Basic (Declaration)
Protected Overridable Sub OnKeyUp ( _
	arg As Tool..::.KeyEventArgs _
)
Visual C++
protected:
virtual void OnKeyUp(
	Tool..::.KeyEventArgs^ arg
)

Parameters

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

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

Remarks

When creating a custom tool, write the code that performs the action when a key on the keyboard is released when this tool is the active tool in the OnKeyUp method.

See Also