/// <inheritdoc />
 /// <summary>
 ///     The Main Constructor for the section arguments class.
 ///     This constructor will initialize all required private and public variables
 /// </summary>
 /// <param name="startingIndex">The starting index of the section</param>
 /// <param name="list">
 ///     The <see cref="T:Dxflib.IO.TaggedDataList" /> list that contains
 ///     all of the tagged data
 /// </param>
 public EntitiesSectionArgs(int startingIndex, TaggedDataList list)
     : base(startingIndex, list)
 {
     Entities = new List <Entity>();
 }
Beispiel #2
0
 /// <summary>
 ///     The Main Constructor for the file section base which records
 ///     its starting position in the file
 /// </summary>
 /// <param name="startingIndex">The Starting index of the file</param>
 /// <param name="list">The List of Tagged Data</param>
 protected FileSectionBase(int startingIndex, TaggedDataList list)
 {
     DataList   = list;
     StartIndex = startingIndex;
 }