Class EntitiesSectionArgs
The Entities section arguments class. A class that stores all of the data from the entities section of the dxf file.
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 EntitiesSectionArgs : FileSectionBase
Constructors
| Improve this Doc View SourceEntitiesSectionArgs(Int32, TaggedDataList)
The Main Constructor for the section arguments class. This constructor will initialize all required private and public variables
Declaration
public EntitiesSectionArgs(int startingIndex, TaggedDataList list)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | startingIndex | The starting index of the section |
TaggedDataList | list | The TaggedDataList list that contains all of the tagged data |
Properties
| Improve this Doc View SourceEntities
The Entities List
Declaration
public List<Entity> Entities { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Entity> |
Methods
| Improve this Doc View SourceReadSection()
This section when called will read the data that is contained in the list that was passed in from the constructor.
Declaration
public override void ReadSection()