Interface IDrawingService
The service handling the drawing of geometry on the surface.
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public interface IDrawingService
Remarks
Note that this service can be customized and plugged into the Service
Properties
ActiveShape
Gets the active shape.
Declaration
IGeometryShape ActiveShape { get; }
Property Value
AnchorPoints
Gets the anchor points.
Declaration
IEnumerable<Point> AnchorPoints { get; }
Property Value
System.
|
ControlPoints
Gets the control points.
Declaration
IEnumerable<Point> ControlPoints { get; }
Property Value
System.
|
IsDrawing
Gets a value indicating whether this instance is drawing.
Declaration
bool IsDrawing { get; }
Property Value
System.
|
Methods
ClearPoints()
Clears the points.
Declaration
void ClearPoints()
CompleteDraw()
Completes the draw.
Declaration
void CompleteDraw()
CreateDrawCommand(IGeometryShape, DrawingState, DrawingState, Boolean, Boolean, DrawingShapeInfo)
Creates the DrawCommand that sets the new state of the Shape or reverts the old state.
Declaration
DrawCommand CreateDrawCommand(IGeometryShape shape, DrawingState oldState, DrawingState newState, bool isComplete, bool isUndoable, DrawingShapeInfo shapeInfo)
Parameters
IGeometry
|
Drawing
|
Drawing
|
System.
|
System.
|
Drawing
|
Returns
CreateHandlesGeometry(Point, Point, FillRule)
Create geometry for the Path Handles in Path Tool.
Declaration
Geometry CreateHandlesGeometry(Point startPoint, Point endPoint, FillRule fillRule)
Parameters
Returns
CreateShapeGeometry(IEnumerable<DrawingToolSegment>, DrawingShapeInfo)
Creates Geometry for a shape from a given DrawingToolSegments.
Declaration
Geometry CreateShapeGeometry(IEnumerable<DrawingToolSegment> segments, DrawingShapeInfo shapeInfo)
Parameters
System.
|
Drawing
|
Returns
DrawPoints(Nullable<Point>, Nullable<Point>, Boolean)
Draws the points.
Declaration
bool DrawPoints(Point? anchorPoint, Point? controlPoint, bool isUndoable = false)
Parameters
System. The anchor point. |
System. The control point. |
System. The is undoable. |
Returns
System.
|
InitializeDraw(IGeometryShape, String)
Initializes draw action.
Declaration
void InitializeDraw(IGeometryShape activeShape, string toolName)
Parameters
IGeometry The active shape. |
System. The name of the current tool. |
RemoveLastAnchorPoint()
Removes the last anchor point.
Declaration
void RemoveLastAnchorPoint()
RemoveLastControlPoint()
Removes the last control point.
Declaration
void RemoveLastControlPoint()
SetState(IGeometryShape, IEnumerable<Point>, IEnumerable<Point>)
Sets the state.
Declaration
void SetState(IGeometryShape shape, IEnumerable<Point> anchorPoints, IEnumerable<Point> controlPoints)
Parameters
IGeometry The shape. |
System. The anchor points. |
System. The control points. |
StartDraw()
Starts the draw.
Declaration
void StartDraw()
Events
Drawing
Occurs when drawing.
Declaration
event EventHandler<DrawingEventArgs> Drawing
Event Type
System.
|