Inheritance: IfcBuildingElement
Example #1
0
		internal static void parseFields(IfcBeam b, List<string> arrFields, ref int ipos, Schema schema)
		{
			IfcBuildingElement.parseFields(b, arrFields, ref ipos);
			if (schema != Schema.IFC2x3)
			{
				string str = arrFields[ipos++];
				if (str[0] == '.')
					b.mPredefinedType = (IfcBeamTypeEnum)Enum.Parse(typeof(IfcBeamTypeEnum), str.Substring(1, str.Length - 2));
			}
		}
Example #2
0
 internal IfcBeam(DatabaseIfc db, IfcBeam b, DuplicateOptions options) : base(db, b, options)
 {
     mPredefinedType = b.mPredefinedType;
 }
Example #3
0
 public Pset_ConcreteElementGeneral(IfcBeam instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }
Example #4
0
 internal IfcBeam(DatabaseIfc db, IfcBeam b, IfcOwnerHistory ownerHistory, bool downStream) : base(db, b, ownerHistory, downStream)
 {
     mPredefinedType = b.mPredefinedType;
 }
 public Qto_BeamBaseQuantities(IfcBeam instance) : base(instance)
 {
 }
Example #6
0
		internal static IfcBeam Parse(string strDef, Schema schema) { IfcBeam b = new IfcBeam(); int ipos = 0; parseFields(b, ParserSTEP.SplitLineFields(strDef), ref ipos, schema); return b; }
Example #7
0
		internal IfcBeam(IfcBeam b) : base(b) { mPredefinedType = b.mPredefinedType; }
Example #8
0
 internal static IfcBeam Parse(string str, ReleaseVersion schema)
 {
     IfcBeam b = new IfcBeam(); int pos = 0; b.Parse(str,ref pos, str.Length, schema); return b;
 }
Example #9
0
 internal IfcBeam(DatabaseIfc db, IfcBeam b)
     : base(db, b)
 {
     mPredefinedType = b.mPredefinedType;
 }