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

parseFields() static private méthode

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