LwPolyline Constructor (IEnumerableLwPolylineVertex, Boolean)
|
Initializes a new instance of the LwPolyline class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public LwPolyline(
IEnumerable<LwPolylineVertex> vertexes,
bool isClosed
)
Public Sub New (
vertexes As IEnumerable(Of LwPolylineVertex),
isClosed As Boolean
)
public:
LwPolyline(
IEnumerable<LwPolylineVertex^>^ vertexes,
bool isClosed
)
new :
vertexes : IEnumerable<LwPolylineVertex> *
isClosed : bool -> LwPolyline
CONSTRUCTOR(
vertexes AS IEnumerable<LwPolylineVertex>,
isClosed AS LOGIC
)
Parameters
- vertexes
- Type: System.Collections.GenericIEnumerableLwPolylineVertex
LwPolyline vertex list in object coordinates. - isClosed
- Type: SystemBoolean
Sets if the polyline is closed (default: false).
See Also