iProperty Location

iProperty Location

amitnkukanur
Collaborator Collaborator
484 Views
2 Replies
Message 1 of 3

iProperty Location

amitnkukanur
Collaborator
Collaborator

Hey Guys, Am working on iProperties and i am trying to find the iProperty Location. 

I tried

 

Inventor User Defined Properties

Inventor Summary Information

Design Tracking Property

 

But i am unable to find the Location iProperty

 

Any Ideas on how to find this location

 

Senior Software Engineer
0 Likes
Accepted solutions (1)
485 Views
2 Replies
Replies (2)
Message 2 of 3

Mike.Wohletz
Collaborator
Collaborator
Accepted solution

If by location you are referring to the path where the file is located I don't think this is a property, if you are needing to get this info try the following;

 

 Dim Path As String = oDoc.FullDocumentName.Substring(0, oDoc.FullDocumentName.LastIndexOf("\") + 1)

 

Message 3 of 3

amitnkukanur
Collaborator
Collaborator

Yes, i tried a lot on getting the location from iproperty but i was unable to do it so finally in got the location from this way

 

Senior Software Engineer
0 Likes