public Pset_ConcreteElementGeneral(IfcBuildingElementProxyType type) : base(type.mDatabase, "Pset_ConcreteElementGeneral") { Description = type.Name; type.AddPropertySet(this); }
internal IfcBuildingElementProxyType(DatabaseIfc db, IfcBuildingElementProxyType t, DuplicateOptions options) : base(db, t, options) { mPredefinedType = t.mPredefinedType; }
internal IfcBuildingElementProxyType(DatabaseIfc db, IfcBuildingElementProxyType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream) { mPredefinedType = t.mPredefinedType; }
internal new static IfcBuildingElementProxyType Parse(string strDef) { IfcBuildingElementProxyType t = new IfcBuildingElementProxyType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
internal static void parseFields(IfcBuildingElementProxyType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t, arrFields, ref ipos); try { t.mPredefinedType = (IfcBuildingElementProxyTypeEnum)Enum.Parse(typeof(IfcBuildingElementProxyTypeEnum), arrFields[ipos++].Replace(".", "")); } catch (Exception) { } }
internal IfcBuildingElementProxyType(IfcBuildingElementProxyType t) : base(t) { mPredefinedType = t.mPredefinedType; }
internal IfcBuildingElementProxyType(DatabaseIfc db, IfcBuildingElementProxyType t) : base(db,t) { mPredefinedType = t.mPredefinedType; }