You can toggle text boundaries on and off by using the following macro and assigning that marco to your toolbar:
Sub ToggleShowTextBoundaries()
If ActiveWindow.View.ShowTextBoundaries Then
ActiveWindow.View.ShowTextBoundaries = False
Else
ActiveWindow.View.ShowTextBoundaries = True
End If
End Sub
Viết bình luận