Наследование: IfcDistributionFlowElement
Пример #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));
		}
Пример #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));
     }
 }
Пример #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;
 }
Пример #4
0
 internal static void parseFields(IfcFlowTerminal t, List<string> arrFields, ref int ipos)
 {
     IfcDistributionFlowElement.parseFields(t, arrFields, ref ipos);
 }
Пример #5
0
 protected IfcFlowTerminal(IfcFlowTerminal basis)
     : base(basis)
 {
 }
Пример #6
0
 internal IfcFlowTerminal(DatabaseIfc db, IfcFlowTerminal t)
     : base(db, t)
 {
 }
Пример #7
0
		internal IfcFlowTerminal(IfcFlowTerminal t) : base(t) { }
Пример #8
0
 internal IfcFlowTerminal(DatabaseIfc db, IfcFlowTerminal t, DuplicateOptions options) : base(db, t, options)
 {
 }
Пример #9
0
 protected IfcFlowTerminal(IfcFlowTerminal basis, bool replace) : base(basis, replace)
 {
 }