Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

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