ITool Interface
Provides callback methods that are used to implement tools.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public interface ITool
Remarks
This interface has to be implemented by user objects that are to be used as MapControl tools. This is the recommended way to implement customized interaction with a MapControl.
If you just want to add some functionality to one of the built-in tools like StandardTool, it is possible to do so, by deriving from the built-in class instead of implementing the full ITool interface. Just override the methods you need, to intercept the mouse and keyboard events you are interested in. Then use the events for your own interaction, or pass them to the base class for its standard interaction handling.
Instead of deriving from a built-in tool, it is also possible to aggregate an instance of a built-in tool in your own ITool implementation, and pass all events you are not interested in to the aggregated tool.
Implemented By
Platforms
Windows, Linux, Android
ITool Members
The ITool type has the following members.
Methods
Name | Description |
---|---|
IsActive | Indicates if the tool is active with a user interaction. |
OnConnect | Called when a tool is connected to the map control. |
OnDisconnect | Called when the tool is disconnected from the map control. |
OnKeyDown | Called when a key is pressed. |
OnKeyUp | Called when a key is released. |
OnMouseDoubleClick | Called when a mouse button is double clicked. |
OnMouseDown | Called when a mouse button is pressed. |
OnMouseMove | Called when the mouse is moved. |
OnMouseUp | Called when a mouse button is released. |
OnMouseWheel | Called when the mouse wheel is moved. |