Inheritance: IfcElementComponentType
示例#1
0
 internal IfcBuildingElementPartType(DatabaseIfc db, IfcBuildingElementPartType t, DuplicateOptions options) : base(db, t, options)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#2
0
 internal IfcBuildingElementPartType(DatabaseIfc db, IfcBuildingElementPartType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
     mPredefinedType = t.mPredefinedType;
 }
示例#3
0
		internal new static IfcBuildingElementPartType Parse(string strDef) { IfcBuildingElementPartType t = new IfcBuildingElementPartType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
示例#4
0
		internal static void parseFields(IfcBuildingElementPartType t, List<string> arrFields, ref int ipos) { IfcBuildingElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcBuildingElementPartTypeEnum)Enum.Parse(typeof(IfcBuildingElementPartTypeEnum), arrFields[ipos++].Replace(".", "")); }
示例#5
0
		internal IfcBuildingElementPartType(IfcBuildingElementPartType t) : base(t) { mPredefinedType = t.mPredefinedType; }
示例#6
0
 internal IfcBuildingElementPartType(DatabaseIfc db, IfcBuildingElementPartType t)
     : base(db, t)
 {
     mPredefinedType = t.mPredefinedType;
 }