Not applicable
10-07-2016
01:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
So I'm trying to access a specific detail view of a part and change the size of boundary. Here's the code I have and it doesn't generate an error, but it also doesn't do anything and I'm not sure why. Is this an error in Inventor?
SyntaxEditor Code Snippet
Dim oDrawingViews As DrawingViews = ThisApplication.ActiveDocument.Sheets.Item(1).DrawingViews For Each oView In oDrawingViews If oView.Name = "DETAIL B" Then MsgBox(oView.Name) oView.FenceRadius = 10 InventorVb.DocumentUpdate() End If Next
Solved! Go to Solution.