Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Dim oDrawDoc As DrawingDocument = ThisApplication.ActiveDocument Dim oSheet As Sheet Dim oView As DrawingView Dim oDetailView As DetailDrawingView For Each oSheet In oDrawDoc.Sheets For each oView in oSheet.DrawingViews For Each oDetailView In oView.DetailDrawingViews oDetailView.FenceRadius = 3 Next Next Next
I'm trying to write to 'Fence Radius' however, its telling me
that DetailDrawingView is not found in DrawingView despite the fact
that it is listed as such in API help.
Solved! Go to Solution.