Inheritance: IfcDistributionFlowElement
Esempio n. 1
0
		internal static void parseFields(IfcOutlet s, List<string> arrFields, ref int ipos)
		{
			IfcFlowTerminal.parseFields(s, arrFields, ref ipos);
			string str = arrFields[ipos++];
			if (str[0] == '.')
				s.mPredefinedType = (IfcOutletTypeEnum)Enum.Parse(typeof(IfcOutletTypeEnum), str.Substring(1, str.Length - 2));
		}
Esempio n. 2
0
 internal static void parseFields(IfcLightFixture t, List <string> arrFields, ref int ipos)
 {
     IfcFlowTerminal.parseFields(t, arrFields, ref ipos); string s = arrFields[ipos++]; if (s[0] == '.')
     {
         t.mPredefinedType = (IfcLightFixtureTypeEnum)Enum.Parse(typeof(IfcLightFixtureTypeEnum), s.Substring(1, s.Length - 2));
     }
 }
Esempio n. 3
0
 internal static new IfcFlowTerminal Parse(string strDef)
 {
     IfcFlowTerminal t = new IfcFlowTerminal(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t;
 }
Esempio n. 4
0
 internal static void parseFields(IfcFlowTerminal t, List<string> arrFields, ref int ipos)
 {
     IfcDistributionFlowElement.parseFields(t, arrFields, ref ipos);
 }
Esempio n. 5
0
 protected IfcFlowTerminal(IfcFlowTerminal basis)
     : base(basis)
 {
 }
Esempio n. 6
0
 internal IfcFlowTerminal(DatabaseIfc db, IfcFlowTerminal t)
     : base(db, t)
 {
 }
Esempio n. 7
0
		internal IfcFlowTerminal(IfcFlowTerminal t) : base(t) { }
Esempio n. 8
0
 internal IfcFlowTerminal(DatabaseIfc db, IfcFlowTerminal t, DuplicateOptions options) : base(db, t, options)
 {
 }
Esempio n. 9
0
 protected IfcFlowTerminal(IfcFlowTerminal basis, bool replace) : base(basis, replace)
 {
 }