Inheritance: IfcBuildingElement
Esempio n. 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));
			}
		}
Esempio n. 2
0
 internal IfcBeam(DatabaseIfc db, IfcBeam b, DuplicateOptions options) : base(db, b, options)
 {
     mPredefinedType = b.mPredefinedType;
 }
Esempio n. 3
0
 public Pset_ConcreteElementGeneral(IfcBeam instance)
     : base(instance.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = instance.Name; DefinesOccurrence.Assign(instance);
 }
Esempio n. 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)
 {
 }
Esempio n. 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; }
Esempio n. 7
0
		internal IfcBeam(IfcBeam b) : base(b) { mPredefinedType = b.mPredefinedType; }
Esempio n. 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;
 }
Esempio n. 9
0
 internal IfcBeam(DatabaseIfc db, IfcBeam b)
     : base(db, b)
 {
     mPredefinedType = b.mPredefinedType;
 }