Interface IControllerService
Represents a container service.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public interface IControllerService
Methods
BeginConnectionCreation(IConnection)
Begins the connection creation.
Declaration
ICommand BeginConnectionCreation(IConnection connection)
Parameters
|
IConnection
connection
The connection. |
Returns
|
ICommand
|
BeginShapeCreation(IShape)
Begins the shape creation.
Declaration
ICommand BeginShapeCreation(IShape shape)
Parameters
|
IShape
shape
The shape. |
Returns
|
ICommand
|
CompleteConnectionCreation(IConnection)
Completes the connection creation.
Declaration
ICommand CompleteConnectionCreation(IConnection connection)
Parameters
|
IConnection
connection
The connection. |
Returns
|
ICommand
|
CompleteShapeCreation(IShape)
Completes the shape creation.
Declaration
ICommand CompleteShapeCreation(IShape shape)
Parameters
|
IShape
shape
The shape. |
Returns
|
ICommand
|
CreateConnection(IShape, IShape)
Creates the connection.
Declaration
IConnection CreateConnection(IShape source, IShape target)
Parameters
|
IShape
source
The source. |
|
IShape
target
The target. |
Returns
|
IConnection
|
CreateConnection(Point, Point)
Creates the connection.
Declaration
IConnection CreateConnection(Point startPoint, Point endPoint)
Parameters
|
Point
startPoint
The start point. |
|
Point
endPoint
The end point. |
Returns
|
IConnection
|
CreateGeometryShape(ref ICommand)
Creates an undoable geometry shape.
Declaration
IGeometryShape CreateGeometryShape(ref ICommand command)
Parameters
|
ICommand
command
|
Returns
|
IGeometryShape
|