GeometryGym.Ifc.IfcAnnotation.Parse C# (CSharp) Méthode

Parse() static private méthode

static private Parse ( string strDef ) : IfcAnnotation
strDef string
Résultat IfcAnnotation
		internal static IfcAnnotation Parse(string strDef) { int ipos = 0; IfcAnnotation a = new IfcAnnotation(); parseFields(a, ParserSTEP.SplitLineFields(strDef), ref ipos); return a; }
		internal static void parseFields(IfcAnnotation a, List<string> arrFields, ref int ipos)  { IfcProduct.parseFields(a,arrFields, ref ipos); }