Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hello
I am using the below code to clear all adaptability of the assembly.
I want to know how to use it without clearing the reference as shown in the picture
Dim doc As Document = ThisApplication.ActiveDocument
For Each oDoc As Document In doc.AllReferencedDocuments
Try
If oDoc.ModelingSettings.AdaptivelyUsedInAssembly = True Then
oDoc.ModelingSettings.AdaptivelyUsedInAssembly = False
End If
Catch
End Try
Next
Solved! Go to Solution.