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

parseFields() static private méthode

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