PolygonGeometry.PolygonGeometry Constructors
Initializes a new instance of the PolygonGeometry class.
Overload List
Name | Description | |
---|---|---|
Public method | PolygonGeometry() | Initializes a new instance of the PolygonGeometry class that has no rings. |
Public method | PolygonGeometry(LineGeometry outline) | Initializes a new instance of the PolygonGeometry class with the given outline. |
Public method | PolygonGeometry(PointCollection outline) | Initializes a new instance of the PolygonGeometry class with the given points. |
Public method | PolygonGeometry(Rectangle rectangle) | Initializes a new instance of the PolygonGeometry with the specified Rectangle. |
Public method | PolygonGeometry(LineGeometryCollection rings) | Initializes a new instance of the PolygonGeometry with the specified rings. |
Public method | PolygonGeometry(IEnumerable< Point > outline) | Initializes a new instance of the PolygonGeometry class with the given points. |
Public method | PolygonGeometry(IEnumerable< LineGeometry > rings) | Initializes a new instance of the PolygonGeometry with the specified rings. |
PolygonGeometry()
Initializes a new instance of the PolygonGeometry class that has no rings.Syntax
public PolygonGeometry ()
PolygonGeometry(LineGeometry outline)
Initializes a new instance of the PolygonGeometry class with the given outline.Syntax
public PolygonGeometry (
LineGeometry outline
)
Parameters
A line that will be used as the outline of the polygon.
Remarks
The PolygonGeometry will throw an exception if it cannot take ownership of the given line.
PolygonGeometry(PointCollection outline)
Initializes a new instance of the PolygonGeometry class with the given points.Syntax
public PolygonGeometry (
PointCollection outline
)
Parameters
A collection points to copy into the outline of the polygon.
PolygonGeometry(Rectangle rectangle)
Initializes a new instance of the PolygonGeometry with the specified Rectangle.Syntax
public PolygonGeometry (
Rectangle rectangle
)
Parameters
A rectangle.
PolygonGeometry(LineGeometryCollection rings)
Initializes a new instance of the PolygonGeometry with the specified rings.Syntax
public PolygonGeometry (
LineGeometryCollection rings
)
Parameters
A collection of rings.
Remarks
The PolygonGeometry will throw an exception if it cannot take ownership of all rings.
PolygonGeometry(IEnumerable< Point > outline)
Initializes a new instance of the PolygonGeometry class with the given points.Syntax
public PolygonGeometry (
IEnumerable< Point > outline
)
Parameters
A collection points to copy into the outline of the polygon.
PolygonGeometry(IEnumerable< LineGeometry > rings)
Initializes a new instance of the PolygonGeometry with the specified rings.Syntax
public PolygonGeometry (
IEnumerable< LineGeometry > rings
)
Parameters
A collection of rings.
Remarks
The PolygonGeometry will throw an exception if it cannot take ownership of all rings.
Platforms
Windows, Linux, Android