Class DrawingEventArgs
DrawingEventArgs.
Inheritance
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class DrawingEventArgs : EventArgs
Constructors
DrawingEventArgs(IGeometryShape, IEnumerable<Point>, IEnumerable<Point>, Boolean, Boolean, String)
Initializes a new instance of the DrawingEventArgs class.
Declaration
public DrawingEventArgs(IGeometryShape shape, IEnumerable<Point> anchorPoints, IEnumerable<Point> controlPoints, bool isCompleted, bool isUndoable, string toolName)
Parameters
IGeometryShape
shape
|
System.Collections.Generic.IEnumerable<System.Windows.Point>
anchorPoints
|
System.Collections.Generic.IEnumerable<System.Windows.Point>
controlPoints
|
System.Boolean
isCompleted
|
System.Boolean
isUndoable
|
System.String
toolName
|
Properties
AnchorPoints
Gets the anchor points.
Declaration
public IEnumerable<Point> AnchorPoints { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Windows.Point>
|
ControlPoints
Gets the control points.
Declaration
public IEnumerable<Point> ControlPoints { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Windows.Point>
|
IsCompleted
Gets a value indicating whether this instance is completed.
Declaration
public bool IsCompleted { get; }
Property Value
System.Boolean
|
IsUndoable
Gets a value indicating whether this instance is undoable.
Declaration
public bool IsUndoable { get; }
Property Value
System.Boolean
|
Shape
ToolName
Gets a value indicating the name of the current tool.
Declaration
public string ToolName { get; }
Property Value
System.String
|