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

parseFields() static private méthode

static private parseFields ( IfcDistributionChamberElementType t, List arrFields, int &ipos ) : void
t IfcDistributionChamberElementType
arrFields List
ipos int
Résultat void
		internal static void parseFields(IfcDistributionChamberElementType t, List<string> arrFields, ref int ipos) { IfcDistributionFlowElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcDistributionChamberElementTypeEnum)Enum.Parse(typeof(IfcDistributionChamberElementTypeEnum), arrFields[ipos++].Replace(".", "")); }
		internal new static IfcDistributionChamberElementType Parse(string strDef) { IfcDistributionChamberElementType t = new IfcDistributionChamberElementType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }