Inheritance: IfcBuildingElementType
Ejemplo n.º 1
0
 internal IfcBeamType(DatabaseIfc db, IfcBeamType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 2
0
 internal IfcBeamType(DatabaseIfc db, IfcBeamType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
Ejemplo n.º 3
0
 public Pset_ConcreteElementGeneral(IfcBeamType type)
     : base(type.mDatabase, "Pset_ConcreteElementGeneral")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
Ejemplo n.º 4
0
 public Qto_BeamBaseQuantities(IfcBeamType type) : base(type)
 {
 }
Ejemplo n.º 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; }
Ejemplo n.º 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(".", "")); }
Ejemplo n.º 7
0
		internal IfcBeamType(IfcBeamType b) : base(b) { mPredefinedType = b.mPredefinedType; }
Ejemplo n.º 8
0
 internal IfcBeamType(DatabaseIfc db, IfcBeamType t)
     : base(db,t)
 {
     mPredefinedType = t.mPredefinedType;
 }