Class
DrawingEventArgs

DrawingEventArgs.

Definition

Namespace:Telerik.Windows.Diagrams.Core

Assembly:Telerik.Windows.Diagrams.Core.dll

Syntax:

cs-api-definition
public class DrawingEventArgs : EventArgs

Inheritance: objectEventArgsDrawingEventArgs

Inherited Members EventArgs.Empty

Constructors

DrawingEventArgs(IGeometryShape, IEnumerable<Point>, IEnumerable<Point>, bool, bool, string)

Initializes a new instance of the DrawingEventArgs class.

Declaration

cs-api-definition
public DrawingEventArgs(IGeometryShape shape, IEnumerable<Point> anchorPoints, IEnumerable<Point> controlPoints, bool isCompleted, bool isUndoable, string toolName)

Parameters

shape

IGeometryShape

anchorPoints

IEnumerable<Point>

controlPoints

IEnumerable<Point>

isCompleted

bool

isUndoable

bool

toolName

string

Properties

AnchorPoints

Gets the anchor points.

Declaration

cs-api-definition
public IEnumerable<Point> AnchorPoints { get; }

Property Value

IEnumerable<Point>

ControlPoints

Gets the control points.

Declaration

cs-api-definition
public IEnumerable<Point> ControlPoints { get; }

Property Value

IEnumerable<Point>

IsCompleted

Gets a value indicating whether this instance is completed.

Declaration

cs-api-definition
public bool IsCompleted { get; }

Property Value

bool

IsUndoable

Gets a value indicating whether this instance is undoable.

Declaration

cs-api-definition
public bool IsUndoable { get; }

Property Value

bool

Shape

Gets the shape.

Declaration

cs-api-definition
public IGeometryShape Shape { get; }

Property Value

IGeometryShape

ToolName

Gets a value indicating the name of the current tool.

Declaration

cs-api-definition
public string ToolName { get; }

Property Value

string