Labels

Toggle the details-on-demand panel on\off

1
2
3
4
if (Document.ActivePageReference.DetailsOnDemandPanel.Visible == False):
   Document.ActivePageReference.DetailsOnDemandPanel.Visible = True
else:
   Document.ActivePageReference.DetailsOnDemandPanel.Visible = False

1 comment:

  1. Shortcut:
    Document.ActivePageReference.DetailsOnDemandPanel.Visible = not Document.ActivePageReference.DetailsOnDemandPanel.Visible

    ReplyDelete