Inheritance: IfcCivilElementPart
Esempio n. 1
0
 internal static void parseFields(IfcBridgeContactElement a, List<string> arrFields, ref int ipos)
 {
     IfcCivilElementPart.parseFields(a, arrFields, ref ipos);
     a.mContactType = (IfcBridgeContactType)Enum.Parse(typeof(IfcBridgeContactType), arrFields[ipos++].Replace(".", ""));
 }
Esempio n. 2
0
 internal static IfcBridgeContactElement Parse(string strDef)
 {
     IfcBridgeContactElement p = new IfcBridgeContactElement(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p;
 }
Esempio n. 3
0
 internal IfcBridgeContactElement(IfcBridgeContactElement b)
     : base(b)
 {
     mContactType = b.mContactType;
 }
Esempio n. 4
0
 internal static void parseFields(IfcBridgeContactElement a, List <string> arrFields, ref int ipos)
 {
     IfcCivilElementPart.parseFields(a, arrFields, ref ipos);
     a.mContactType = (IfcBridgeContactType)Enum.Parse(typeof(IfcBridgeContactType), arrFields[ipos++].Replace(".", ""));
 }
Esempio n. 5
0
 internal static IfcBridgeContactElement Parse(string strDef)
 {
     IfcBridgeContactElement p = new IfcBridgeContactElement(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return(p);
 }
Esempio n. 6
0
 internal IfcBridgeContactElement(IfcBridgeContactElement b) : base(b)
 {
     mContactType = b.mContactType;
 }