LwPolyline Constructor (ListEntityObject, Boolean, Int32)
|
Initializes a new instance of the LwPolyline class form a list of arc and line entities.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public LwPolyline(
List<EntityObject> entities,
bool Bulge = false,
int precision = 100
)
Public Sub New (
entities As List(Of EntityObject),
Optional Bulge As Boolean = false,
Optional precision As Integer = 100
)
public:
LwPolyline(
List<EntityObject^>^ entities,
bool Bulge = false,
int precision = 100
)
new :
entities : List<EntityObject> *
?Bulge : bool *
?precision : int
(* Defaults:
let _Bulge = defaultArg Bulge false
let _precision = defaultArg precision 100
*)
-> LwPolyline
CONSTRUCTOR(
entities AS List<EntityObject>,
Bulge AS LOGIC := FALSE,
precision AS LONG := 100
)
Parameters
- entities
- Type: System.Collections.GenericListEntityObject
A list of entities of contiguous arcs and lines. - Bulge (Optional)
- Type: SystemBoolean
If true all arcs are converted to bulges. - precision (Optional)
- Type: SystemInt32
Number of vertexes generated for arcs.
See Also