New Part Units

New Part Units

Anonymous
Not applicable
438 Views
2 Replies
Message 1 of 3

New Part Units

Anonymous
Not applicable

First day programing VB.net API for inventor, So Yes this a Noob Question

I using code similar to add a new part to an instance of Inventor, and it works OK. The problem is it is using the Metric Template instead of Imperial Template. I have check and confirmed my application preferences and they reflect "inches". Inve is the Variable name for my Inventor.Application. Thank You in advance


    Set Part = Inve.Documents.Add(kPartDocumentObject)

0 Likes
439 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable

I have found a Solution by changing the code to:

Part = Inve.Documents.Add(kPartDocumentObject, "C:\Users\Public\Documents\Autodesk\Inventor 2013\Templates\Standard.ipt")

But is there  cleaner way of doing it?

0 Likes
Message 3 of 3

adam.nagy
Autodesk Support
Autodesk Support

Hi,

 

You can use the Application.FileManager.GetTemplateFile to get the default template. 

Like in this blog post:

http://modthemachine.typepad.com/my_weblog/2013/01/c-help-examples-for-sheet-metal.html

 

Cheers,



Adam Nagy
Autodesk Platform Services
0 Likes