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

parseFields() static private méthode

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