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

parseFields() static private méthode

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