PathGeometry Constructors
Definition
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 ()
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.
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
Parameters
- figures
- IEnumerable<PathFigure>
The Figures of the PathGeometry which describes the contents of the Path.
- fillRule
- FillRule
The FillRule of the PathGeometry.