Inheritance: IfcFlowControllerType
コード例 #1
0
ファイル: IFC E.cs プロジェクト: jenca-cloud/ggIFC
		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
ファイル: IFC E.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcElectricTimeControlType(IfcElectricTimeControlType t) : base(t) { mPredefinedType = t.mPredefinedType; }
コード例 #3
0
ファイル: IFC E.cs プロジェクト: jenca-cloud/ggIFC
		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
ファイル: IFC E.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcElectricTimeControlType(DatabaseIfc db, IfcElectricTimeControlType t) : base(db, t) { mPredefinedType = t.mPredefinedType; }