Class LwPolyLineBuffer
The Buffer class for holding lwpolyling information during the extraction process
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dxflib.Entities
Assembly: Dxflib.dll
Syntax
public class LwPolyLineBuffer : EntityBuffer
Constructors
| Improve this Doc View SourceLwPolyLineBuffer()
The Lwpolyline Buffer Constructor that holds all information for the Lwpolyline class before it is built.
Declaration
public LwPolyLineBuffer()
Properties
| Improve this Doc View SourceBulgeList
The bulge List
Declaration
public List<double> BulgeList { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Double> |
ConstantWidth
Constant width or Global width
Declaration
public double ConstantWidth { get; }
Property Value
Type | Description |
---|---|
System.Double |
Elevation
The elevation of the Lwpolyline
Declaration
public double Elevation { get; }
Property Value
Type | Description |
---|---|
System.Double |
NumberOfVertices
The Number of Vertices in the Lwpolyline
Declaration
public int NumberOfVertices { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
PolyLineFlag
The Lwpolyline Flag, tells if the lwpolyline is open or closed
Declaration
public bool PolyLineFlag { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Thickness
The Thickness of the lwpolyline
Declaration
public double Thickness { get; }
Property Value
Type | Description |
---|---|
System.Double |
XValues
The X values list
Declaration
public List<double> XValues { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Double> |
YValues
The Y Values List
Declaration
public List<double> YValues { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Double> |
Methods
| Improve this Doc View SourceParse(TaggedDataList, Int32)
Main Parse Function for the Lwpolyline Class
Declaration
public override bool Parse(TaggedDataList list, int index)
Parameters
Type | Name | Description |
---|---|---|
TaggedDataList | list | |
System.Int32 | index |
Returns
Type | Description |
---|---|
System.Boolean | True or false if the parse was successful |