GeometryGym.Ifc.IfcExternalSpatialElement.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string strDef ) : IfcExternalSpatialElement
strDef string
return IfcExternalSpatialElement
		internal static IfcExternalSpatialElement Parse(string strDef) { IfcExternalSpatialElement s = new IfcExternalSpatialElement(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
	}