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

Parse() static private method

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