parseFields() protected static méthode

protected static parseFields ( IfcElement e, List arrFields, int &ipos ) : void
e IfcElement
arrFields List
ipos int
Résultat void
Exemple #1
0
        internal static void parseFields(IfcGeographicElement e, List <string> arrFields, ref int ipos)
        {
            IfcElement.parseFields(e, arrFields, ref ipos);
            string s = arrFields[ipos++];

            if (s.StartsWith("."))
            {
                e.mPredefinedType = (IfcGeographicElementTypeEnum)Enum.Parse(typeof(IfcGeographicElementTypeEnum), s.Replace(".", ""));
            }
        }
Exemple #2
0
 internal static void parseFields(IfcVirtualElement e, List <string> arrFields, ref int ipos)
 {
     IfcElement.parseFields(e, arrFields, ref ipos);
 }