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

parseFields() static private méthode

static private parseFields ( IfcElementAssembly a, List arrFields, int &ipos ) : void
a IfcElementAssembly
arrFields List
ipos int
Résultat void
		internal static void parseFields(IfcElementAssembly a, List<string> arrFields, ref int ipos)
		{
			IfcElement.parseFields(a, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str.StartsWith("."))
				a.mAssemblyPlace = (IfcAssemblyPlaceEnum)Enum.Parse(typeof(IfcAssemblyPlaceEnum), str.Replace(".", ""));
			str = arrFields[ipos++];
			if (str.StartsWith("."))
				a.mPredefinedType = (IfcElementAssemblyTypeEnum)Enum.Parse(typeof(IfcElementAssemblyTypeEnum), str.Replace(".", ""));
		}
		protected override string BuildStringSTEP()