PathGeometry 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 PathGeometry class.
Overloads
PathGeometry() |
Initializes a new instance of the PathGeometry class. |
PathGeometry(IEnumerable<PathFigure>) |
Initializes a new instance of the PathGeometry class with the specified Figures. |
PathGeometry(IEnumerable<PathFigure>, FillRule, Transform) |
Initializes a new instance of the PathGeometry class with the specified Figures, FillRule, and Transform. |
PathGeometry()
Initializes a new instance of the PathGeometry class.
public:
PathGeometry();
public PathGeometry ();
Public Sub New ()
Applies to
PathGeometry(IEnumerable<PathFigure>)
Initializes a new instance of the PathGeometry class with the specified Figures.
public:
PathGeometry(System::Collections::Generic::IEnumerable<System::Windows::Media::PathFigure ^> ^ figures);
public PathGeometry (System.Collections.Generic.IEnumerable<System.Windows.Media.PathFigure> figures);
new System.Windows.Media.PathGeometry : seq<System.Windows.Media.PathFigure> -> System.Windows.Media.PathGeometry
Public Sub New (figures As IEnumerable(Of PathFigure))
Parameters
- figures
- IEnumerable<PathFigure>
The Figures of the PathGeometry which describes the contents of the Path.
Applies to
PathGeometry(IEnumerable<PathFigure>, FillRule, Transform)
Initializes a new instance of the PathGeometry class with the specified Figures, FillRule, and Transform.
public:
PathGeometry(System::Collections::Generic::IEnumerable<System::Windows::Media::PathFigure ^> ^ figures, System::Windows::Media::FillRule fillRule, System::Windows::Media::Transform ^ transform);
public PathGeometry (System.Collections.Generic.IEnumerable<System.Windows.Media.PathFigure> figures, System.Windows.Media.FillRule fillRule, System.Windows.Media.Transform transform);
new System.Windows.Media.PathGeometry : seq<System.Windows.Media.PathFigure> * System.Windows.Media.FillRule * System.Windows.Media.Transform -> System.Windows.Media.PathGeometry
Public Sub New (figures As IEnumerable(Of PathFigure), fillRule As FillRule, transform As Transform)
Parameters
- figures
- IEnumerable<PathFigure>
The Figures of the PathGeometry which describes the contents of the Path.
- fillRule
- FillRule
The FillRule of the PathGeometry.