Inheritance: IfcExternalSpatialStructureElement, IfcSpaceBoundarySelect
Exemple #1
0
		internal static IfcExternalSpatialElement Parse(string strDef) { IfcExternalSpatialElement s = new IfcExternalSpatialElement(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Exemple #2
0
		internal IfcExternalSpatialElement(IfcExternalSpatialElement p) : base(p) { mPredefinedType = p.mPredefinedType; }
Exemple #3
0
		internal static void parseFields(IfcExternalSpatialElement gp, List<string> arrFields, ref int ipos)
		{
			IfcSpatialStructureElement.parseFields(gp, arrFields, ref ipos);
			string s = arrFields[ipos++];
			if (s[0] == '.')
				gp.mPredefinedType = (IfcExternalSpatialElementTypeEnum)Enum.Parse(typeof(IfcExternalSpatialElementTypeEnum), s.Replace(".", ""));
		}
Exemple #4
0
		internal IfcExternalSpatialElement(DatabaseIfc db, IfcExternalSpatialElement e, bool downStream) : base(db, e,downStream) { mPredefinedType = e.mPredefinedType; }