09-26-2023
10:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-26-2023
10:11 AM
@WCrihfield to be more specific, what I'm trying to do, is access custom iProperties of a drawing. I have access to the assembly that is represented by the drawing and I can get the filename of the drawing by virtue of the fact that the drawings always share the same name as the part or assembly that they represent. I can set a drawing to an object when I use the open function:
Dim oDrawDoc As DrawingDocument = ThisApplication.Documents.Open(c:\vault\drawings\drawing.idw)
But I'd like to be able to get a drawing set to an object under the same circumstances without having to open it. Thank you for your help.