DrawingEventArgs
Class
DrawingEventArgs.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.WinControls.RadDiagram.dll
Syntax:
C#
public class DrawingEventArgs : EventArgs
Inheritance: objectEventArgsDrawingEventArgs
Inherited Members
Constructors
Initializes a new instance of the DrawingEventArgs class.
C#
public DrawingEventArgs(IGeometryShape shape, IEnumerable<Point> anchorPoints, IEnumerable<Point> controlPoints, bool isCompleted, bool isUndoable, string toolName)
Properties
AnchorPoints
IEnumerable<Point>
Gets the anchor points.
C#
public IEnumerable<Point> AnchorPoints { get; }
ControlPoints
IEnumerable<Point>
Gets the control points.
C#
public IEnumerable<Point> ControlPoints { get; }
Gets a value indicating whether this instance is completed.
C#
public bool IsCompleted { get; }
Gets a value indicating whether this instance is undoable.
C#
public bool IsUndoable { get; }
Gets the shape.
C#
public IGeometryShape Shape { get; }