Class FileSectionBase
File Section base is a class that represents the different sections of an AutoCAD Class
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.IO
Assembly: Dxflib.dll
Syntax
public class FileSectionBase
Constructors
| Improve this Doc View SourceFileSectionBase(Int32, TaggedDataList)
The Main Constructor for the file section base which records its starting position in the file
Declaration
protected FileSectionBase(int startingIndex, TaggedDataList list)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | startingIndex | The Starting index of the file |
TaggedDataList | list | The List of Tagged Data |
Fields
| Improve this Doc View SourceDataList
The List of Tagged data (Group Codes and values)
Declaration
protected readonly TaggedDataList DataList
Field Value
Type | Description |
---|---|
TaggedDataList |
Properties
| Improve this Doc View SourceEndIndex
The Ending Index of the file section
Declaration
protected int EndIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
StartIndex
The Starting Index of the file section
Declaration
protected int StartIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceReadSection()
A virtual class that is designed to extract the data from the section. Note that the End Index is only ever recorded at the calling of this virtual function
Declaration
public virtual void ReadSection()