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

Parse() static private method

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