Description
Toggles display of tracking mode on the Pages main tab.
Uses the Ena_IsWindowActive function for enabler.
Uses the Chk_IsViewShowedInfo function to display the tick mark in the menu.
Syntax
ViewShowInfo |
Code
<ShellCommand(CanExecute:="Ena_IsWindowActive", IsChecked:="Chk_IsViewShowedInfo")> _
Public Sub ViewShowInfo()
If Not Chk_IsViewShowedInfo() Then ' it is not shown
SwitchOnAllInvisibles()
Page.ViewShowInfo(SwitchOn)
Page.ViewShowImg(SwitchOff)
Else
Page.ViewShowInfo(SwitchOff)
Page.ViewShowImg(SwitchOn)
End If
End Sub
See also