GeometryGym.Ifc.IfcFurniture.parseFields C# (CSharp) Méthode

parseFields() static private méthode

static private parseFields ( IfcFurniture e, List arrFields, int &ipos ) : void
e IfcFurniture
arrFields List
ipos int
Résultat void
        internal static void parseFields(IfcFurniture e, List<string> arrFields, ref int ipos)
        {
            IfcFurnishingElement.parseFields(e, arrFields, ref ipos);
            string s = arrFields[ipos++];
            if (s.StartsWith("."))
                e.mPredefinedType = (IfcFurnitureTypeEnum)Enum.Parse(typeof(IfcFurnitureTypeEnum), s.Replace(".", ""));
        }