GeometryGym.Ifc.IfcDraughtingPreDefinedColour.Parse C# (CSharp) 메소드

Parse() 정적인 개인적인 메소드

static private Parse ( string strDef ) : IfcDraughtingPreDefinedColour
strDef string
리턴 IfcDraughtingPreDefinedColour
		internal static IfcDraughtingPreDefinedColour Parse(string strDef) { IfcDraughtingPreDefinedColour c = new IfcDraughtingPreDefinedColour(); int ipos = 0; parseFields(c, ParserSTEP.SplitLineFields(strDef), ref ipos); return c; }
		internal static void parseFields(IfcDraughtingPreDefinedColour c, List<string> arrFields, ref int ipos) { IfcPreDefinedColour.parseFields(c, arrFields, ref ipos); }