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

Parse() static private method

static private Parse ( string strDef ) : IfcExternallyDefinedSurfaceStyle
strDef string
return IfcExternallyDefinedSurfaceStyle
		internal static IfcExternallyDefinedSurfaceStyle Parse(string strDef) { IfcExternallyDefinedSurfaceStyle f = new IfcExternallyDefinedSurfaceStyle(); int ipos = 0; parseFields(f, ParserSTEP.SplitLineFields(strDef), ref ipos); return f; }
		internal static void parseFields(IfcExternallyDefinedSurfaceStyle f, List<string> arrFields, ref int ipos) { IfcExternalReference.parseFields(f, arrFields, ref ipos); }