상속: IfcFlowController
예제 #1
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcElectricTimeControl Parse(string strDef) { IfcElectricTimeControl s = new IfcElectricTimeControl(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
예제 #2
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcElectricTimeControl(IfcElectricTimeControl c) : base(c) { mPredefinedType = c.mPredefinedType; }
예제 #3
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcElectricTimeControl s, List<string> arrFields, ref int ipos)
		{
			IfcEnergyConversionDevice.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcElectricTimeControlTypeEnum)Enum.Parse(typeof(IfcElectricTimeControlTypeEnum), str);
		}
예제 #4
0
		internal IfcElectricTimeControl(DatabaseIfc db, IfcElectricTimeControl c) : base(db, c) { mPredefinedType = c.mPredefinedType; }