PathFigure Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.