IManipulationPointService
Interface
The service supporting the actions of the ConnectionTool and the ConnectionManipulationTool.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public interface IManipulationPointService
Derived Classes:
Properties
Gets a value indicating whether this instance is being manipulated.
C#
bool IsManipulating { get; }
true if this instance is manipulating; otherwise, false.
Methods
Cleans / reverts the manipulation.
C#
void CleanManipulation()
Initializes the manipulation action.
C#
void InitializeManipulation(IConnectionEditPoint manipulationPoint)
The manipulation point.
Updates the manipulation.
Raises the event.
C#
bool OnManipulationCompleted(ManipulationEventArgs args)
The ManipulationEventArgs instance containing the event data.
Returns:Raises the event.
C#
bool OnManipulationStarted(IConnectionEditPoint editPoint, IConnector connector, Point currentPosition)
The edit point.
connectorIConnectorThe connector.
currentPositionPointThe current position.
Returns:Events
Occurs when manipulating.
C#
event EventHandler Manipulating
Occurs when manipulation is completed.
C#
event EventHandler<ManipulationEventArgs> ManipulationCompleted
Occurs when manipulation is started.
C#
event EventHandler<ManipulationEventArgs> ManipulationStarted