Inheritance: IfcDistributionControlElementType
示例#1
0
		internal new static IfcActuatorType Parse(string strDef) { IfcActuatorType t = new IfcActuatorType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
示例#2
0
		internal IfcActuatorType(IfcActuatorType t) : base(t)  { mPredefinedType = t.mPredefinedType; }
示例#3
0
		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(".","")); }
示例#4
0
		internal IfcActuatorType(DatabaseIfc db, IfcActuatorType t) : base(db, t)  { mPredefinedType = t.mPredefinedType; }