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

Parse() static private method

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