Show / Hide Table of Contents

Class LwPolyLineBuffer

The Buffer class for holding lwpolyling information during the extraction process

Inheritance
System.Object
EntityBuffer
LwPolyLineBuffer
Inherited Members
EntityBuffer.EntityType
EntityBuffer.Handle
EntityBuffer.LayerName
EntityBuffer.EntityReferenceList
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 Source

LwPolyLineBuffer()

The Lwpolyline Buffer Constructor that holds all information for the Lwpolyline class before it is built.

Declaration
public LwPolyLineBuffer()

Properties

| Improve this Doc View Source

BulgeList

The bulge List

Declaration
public List<double> BulgeList { get; }
Property Value
Type Description
System.Collections.Generic.List<System.Double>
| Improve this Doc View Source

ConstantWidth

Constant width or Global width

Declaration
public double ConstantWidth { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Elevation

The elevation of the Lwpolyline

Declaration
public double Elevation { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

NumberOfVertices

The Number of Vertices in the Lwpolyline

Declaration
public int NumberOfVertices { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

PolyLineFlag

The Lwpolyline Flag, tells if the lwpolyline is open or closed

Declaration
public bool PolyLineFlag { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Thickness

The Thickness of the lwpolyline

Declaration
public double Thickness { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

XValues

The X values list

Declaration
public List<double> XValues { get; }
Property Value
Type Description
System.Collections.Generic.List<System.Double>
| Improve this Doc View Source

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 Source

Parse(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

Overrides
EntityBuffer.Parse(TaggedDataList, Int32)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX