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