LineGeometry.LineGeometry Constructors
Initializes a new instance of the LineGeometry class.
Overload List
Name | Description | |
---|---|---|
Public method | LineGeometry() | Initializes a new instance of the LineGeometry class that is empty. |
Public method | LineGeometry(PointCollection points) | Initializes new instance of the LineGeometry class with the given points. |
Public method | LineGeometry(PointCollection points, System.Boolean closed) | Initializes new instance of the LineGeometry class with the given points and optionally closes the line. |
Public method | LineGeometry(IEnumerable< Point > points) | Initializes new instance of the LineGeometry class with copies of the given points. |
Public method | LineGeometry(IEnumerable< Point > points, System.Boolean closed) | Initializes new instance of the LineGeometry class with copies of the given points and optionally closes the line. |
LineGeometry()
Initializes a new instance of the LineGeometry class that is empty.Syntax
public LineGeometry ()
Remarks
This constructor creates a LineGeometry that does not contain any points. It is invalid until at least two points have been added to it.
LineGeometry(PointCollection points)
Initializes new instance of the LineGeometry class with the given points.Syntax
public LineGeometry (
PointCollection points
)
Parameters
The points in the line.
Remarks
The LineGeometry throws an exception if it cannot take ownership of the point collection.
LineGeometry(PointCollection points, System.Boolean closed)
Initializes new instance of the LineGeometry class with the given points and optionally closes the line.Syntax
public LineGeometry (
PointCollection points,
System.Boolean closed
)
Parameters
The initial points in the line.
Determines whether the line is closed or not.
Remarks
The new LineGeometry instance will take ownership of the given points and throw an exception if it fails.
LineGeometry(IEnumerable< Point > points)
Initializes new instance of the LineGeometry class with copies of the given points.Syntax
public LineGeometry (
IEnumerable< Point > points
)
Parameters
A collection of points to copy into the geometry.
LineGeometry(IEnumerable< Point > points, System.Boolean closed)
Initializes new instance of the LineGeometry class with copies of the given points and optionally closes the line.Syntax
public LineGeometry (
IEnumerable< Point > points,
System.Boolean closed
)
Parameters
A collection of points to copy into the geometry.
Determines whether the line is closed or not.
Platforms
Windows, Linux, Android