New to Telerik Document ProcessingStart a free 30-day trial

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; }
Property Value:

If the path figure is closed.

Gets the ordered collection of segments that make up this figure.

C#
public PathSegmentCollection Segments { get; }
Property Value:

The path segments collection.

Gets or sets the first point of the figure where drawing begins.

C#
public Point StartPoint { get; set; }
Property Value:

The start point.