Description
Toggles display of all invisibles (guides, frames, non-printable) on the Pages main tab.
Uses the Ena_IsWindowActive function for enabler.
Syntax
command |
param
description
Code
<ShellCommand(CanExecute:="Ena_IsWindowActive")> _
Public Sub ViewShowInvisiblesToggle()
If (Page.GetViewShow() And 128) Or (Page.GetViewShow() And 64) Or (Page.GetViewShow() And 2) Then
SwitchOffAllInvisibles()
Else
SwitchOnAllInvisibles()
End If
End Sub
See also