12-28-2015
11:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
12-28-2015
11:05 AM
Here's another example that turns off sections arrows/lines for sections views:
Dim oDrawDoc As DrawingDocument oDrawDoc = ThisApplication.ActiveDocument Dim oSheet As Sheet oSheet = oDrawDoc.ActiveSheet ' select drawing views on active sheet Dim oDrawView As DrawingView For Each oDrawView In oSheet.DrawingViews 'look for section views If oDrawView.ViewType = DrawingViewTypeEnum.kSectionDrawingViewType Then 'turn off section view annotations oDrawView.DisplayDefinitionInBase = False End If Next