Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm composing iLogic rule for checking IDWs on empty sheets.
It works just fine for most cases except those sheets that contain only OLE objects.
I've found the way to get all OLE references of the Drawing:
Dim oDoc As DrawingDocument = ThisDoc.Document If ThisDoc.Document.ReferencedOLEFileDescriptors.Count>0 then For each oRefOLEfd As ReferencedOLEFileDescriptor in ThisDoc.Document.ReferencedOLEFileDescriptors MsgBox (oRefOLEfd.FullFileName) Next End If
But I can't find any property in "Sheet object" page of API help that has any relation to OLE.
Any ideas?
Please vote for Inventor-Idea Text Search within Option Names
Solved! Go to Solution.