PathFigure Constructors

Definition

Initializes a new instance of the PathFigure class.

Overloads

PathFigure()

Initializes a new instance of the PathFigure class.

PathFigure(Point, IEnumerable<PathSegment>, Boolean)

Initializes a new instance of the PathFigure class with the specified StartPoint, Segments, and IsClosed values.

PathFigure()

Initializes a new instance of the PathFigure class.

public:
 PathFigure();
public PathFigure ();
Public Sub New ()

Applies to

PathFigure(Point, IEnumerable<PathSegment>, Boolean)

Initializes a new instance of the PathFigure class with the specified StartPoint, Segments, and IsClosed values.

public:
 PathFigure(System::Windows::Point start, System::Collections::Generic::IEnumerable<System::Windows::Media::PathSegment ^> ^ segments, bool closed);
public PathFigure (System.Windows.Point start, System.Collections.Generic.IEnumerable<System.Windows.Media.PathSegment> segments, bool closed);
new System.Windows.Media.PathFigure : System.Windows.Point * seq<System.Windows.Media.PathSegment> * bool -> System.Windows.Media.PathFigure
Public Sub New (start As Point, segments As IEnumerable(Of PathSegment), closed As Boolean)

Parameters

start
Point

The StartPoint for the PathFigure.

segments
IEnumerable<PathSegment>

The Segments for the PathFigure.

closed
Boolean

The IsClosed for the PathFigure.

Applies to