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