Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello!
I'm going to export properties from my assembly model to an Excel sheet.
Most everything works well but I can't get access to property Comments at virtual parts in my assembly
My code is:
If TypeOf bRow.ComponentDefinitions(1) Is VirtualComponentDefinition Then xlWorksheet.Range("B" & row).Value = bRow.ComponentDefinitions(1).PropertySets("Design Tracking Properties")("Description").Value xlWorksheet.Range("C" & row).Value = bRow.ComponentDefinitions(1).PropertySets("Design Tracking Properties")("Part Number").Value xlWorksheet.Range("D" & row).Value = bRow.ComponentDefinitions(1).PropertySets("Inventor Document Summary Information")("Comments").Value
What's the problem? Isn't possible to access property Comments at virtual components?
/Göran
Solved! Go to Solution.