internal ETVegProp(PFSSection Section) { _pfsHandle = Section; for (int i = 1; i <= Section.GetSectionsNo(); i++) { PFSSection sub = Section.GetSection(i); switch (sub.Name) { case "VEGSETUP": _vEGSETUP = new VEGSETUP(sub); break; default: _unMappedSections.Add(sub.Name); break; } } }