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