ImageMagick.MagickScript.CreatePathArcs C# (CSharp) Method

CreatePathArcs() private method

private CreatePathArcs ( XmlElement element ) : Collection
element System.Xml.XmlElement
return Collection
    private Collection<PathArc> CreatePathArcs(XmlElement element)
    {
      Collection<PathArc> collection = new Collection<PathArc>();
      foreach (XmlElement elem in element.SelectNodes("*"))
      {
        collection.Add(CreatePathArc(elem));
      }
      return collection;
    }
  }
MagickScript