GeometryGym.Ifc.IfcBridgeContactElement.parseFields C# (CSharp) Method

parseFields() static private method

static private parseFields ( IfcBridgeContactElement a, List arrFields, int &ipos ) : void
a IfcBridgeContactElement
arrFields List
ipos int
return void
        internal static void parseFields(IfcBridgeContactElement a, List<string> arrFields, ref int ipos)
        {
            IfcCivilElementPart.parseFields(a, arrFields, ref ipos);
            a.mContactType = (IfcBridgeContactType)Enum.Parse(typeof(IfcBridgeContactType), arrFields[ipos++].Replace(".", ""));
        }