Inheritance: IfcBuildingElementType
Example #1
0
 internal IfcBeamType(DatabaseIfc db, IfcBeamType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #2
0
 internal IfcBeamType(DatabaseIfc db, IfcBeamType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Example #3
0
 public Pset_ConcreteElementGeneral(IfcBeamType type)
     : base(type.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
 public Qto_BeamBaseQuantities(IfcBeamType type) : base(type)
 {
 }
Example #5
0
		internal new static IfcBeamType Parse(string strDef) { IfcBeamType t = new IfcBeamType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
Example #6
0
		internal static void parseFields(IfcBeamType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcBeamTypeEnum)Enum.Parse(typeof(IfcBeamTypeEnum), arrFields[ipos++].Replace(".", "")); }
Example #7
0
		internal IfcBeamType(IfcBeamType b) : base(b) { mPredefinedType = b.mPredefinedType; }
Example #8
0
 internal IfcBeamType(DatabaseIfc db, IfcBeamType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }