Show / Hide Table of Contents

Class FileSectionBase

File Section base is a class that represents the different sections of an AutoCAD Class

Inheritance
System.Object
FileSectionBase
EntitiesSectionArgs
HeaderSectionArgs
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 Source

FileSectionBase(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 Source

DataList

The List of Tagged data (Group Codes and values)

Declaration
protected readonly TaggedDataList DataList
Field Value
Type Description
TaggedDataList

Properties

| Improve this Doc View Source

EndIndex

The Ending Index of the file section

Declaration
protected int EndIndex { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

StartIndex

The Starting Index of the file section

Declaration
protected int StartIndex { get; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

ReadSection()

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()
  • Improve this Doc
  • View Source
Back to top Generated by DocFX