public void ImportSelection(VectorViewCtr src)
        {
            VectorDocument d = src.Document;

            if (d != null)
            {
                foreach (VectorPath p in src.Document.Selection)
                {
                    VectorPath path = document.ImportPath(p);
                }
            }



            Invalidate();
        }
Beispiel #2
0
 internal VectorDocument(VectorViewCtr ctr)
 {
     host = ctr;
 }