Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
is it possible to change the item number of a specific component in an assembly file?
Dim ThisDoc As Document = ThisApplication.ActiveDocument Dim oComps As ComponentOccurrences = ThisDoc.ComponentDefinition.Occurrences Dim oComp As ComponentOccurrence For Each oComp In oComps If oComp.Name.Contains("xyz") 'change the item number End If Next
Solved! Go to Solution.