Access the project browser

Access the project browser

nandagopal_k
Participant Participant
203 Views
1 Reply
Message 1 of 2

Access the project browser

nandagopal_k
Participant
Participant

How to access the project browser with c# in autodesk API with source code and activate the project file from project browser folder 

0 Likes
204 Views
1 Reply
Reply (1)
Message 2 of 2

Curtis_Waguespack
Consultant
Consultant

Hi @nandagopal_k,

 

You could use something like this.

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

 

 

 

{
    DesignProjectManager oProject;
    oProject = ThisApplication.DesignProjectManager;
    oProject.DesignProjects.ItemByName("Default").Activate(true);
}

 

 

 

EESignature

0 Likes