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