Class PathFigure
A continuous subpath within a PathGeometry, starting at StartPoint and composed of ordered segments.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.Model.Graphics
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class PathFigure
Constructors
PathFigure()
Properties
IsClosed
Gets or sets a value indicating whether a closing line connects the last point to the StartPoint.
Declaration
public bool IsClosed { get; set; }
Property Value
|
System.Boolean
If the path figure is closed. |
Segments
Gets the ordered collection of segments that make up this figure.
Declaration
public PathSegmentCollection Segments { get; }
Property Value
|
PathSegmentCollection
The path segments collection. |
StartPoint
Gets or sets the first point of the figure where drawing begins.
Declaration
public Point StartPoint { get; set; }
Property Value
|
System.Windows.Point
The start point. |