Message 1 of 34
Update all views in a sheet to turn on Associative check box
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello together,
is there a solution to turn on associative check box in a drawing? How to get the ActiveDesignViewRepresentation name?
Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument Dim oSheet As Sheet Dim oDrawView As DrawingView
For Each oSheet In oDrawDoc.Sheets For Each oDrawView In oSheet.DrawingViews Representation = oDrawView.ActiveDesignViewRepresentation If Representation <> "" Then ' How to get the name 'oDrawView.SetDesignViewRepresentation(Representation, True) End If Next Next
Thank you
Georg