IToolService
Interface
Describes the members of the tool service. This service collects tools like the selection tool or the drawing tool.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public interface IToolService : IMouseListener, IKeyboardListener
Derived Classes:
Inherited Members
Properties
Gets the active tool.
C#
ITool ActiveTool { get; }
Gets the graph internal.
C#
IGraphInternal Graph { get; }
Gets or sets a value indicating whether the control key is pressed.
C#
bool IsControlDown { get; set; }
Gets or sets a value indicating whether the mouse left button is pressed.
C#
bool IsMouseDown { get; set; }
Gets or sets the primary tool.
C#
string PrimaryTool { get; set; }
The primary tool.
Methods
Activates the primary tool.
C#
void ActivatePrimaryTool()