• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Contributor
    Posts: 11
    Registered: ‎05-17-2009
    Accepted Solution

    How to Get all opened documents(drawings)

    150 Views, 1 Replies
    05-28-2012 03:33 AM

    I am using AutoCAD 2012 and the .NET API. Can someone help me how can i loop through the document objects of all the open documents? i am trying to do something like the code below..

     

    public void GetDocNames()
            {
                DocumentCollection docs = Application.DocumentManager;
    
                for (int i = 0; i < docs.Count; i++)
                {
                    AcadDocument doc = docs[i];
                    Debug.Print(doc.Name);
                }
            }

     

    Please use plain text.
    Mentor
    Posts: 260
    Registered: ‎01-27-2010

    Re: How to Get all opened documents(drawings)

    05-28-2012 05:04 AM in reply to: vinayan
    For Each element As Autodesk.AutoCAD.ApplicationServices.Document In Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager
                
    .. your code.
            Next

     

    with this you have all open document 

    Please use plain text.