Expand and Collapse All Document Sections
Expand and Collapse buttons provide a user-friendly method to manage the display of information stored in document sections. These buttons are particularly handy when a document contains numerous sections. When clicked, all sections on the document expand or collapse. Without these buttons, users have to manually adjust each section.
How It Works
Sections are expanded and collapsed using the built-in Formula Language commands SectionCollapseAll and SectionExpandAll. These commands are typically added to action buttons. When users click the button, all sections on the document expand or collapse. If there are no sections on the document, the buttons will have no effect when clicked.
Implementation
To implement this solution, create two action buttons called Expand and Collapse on the form. Insert the following formula to collapse the sections.
@Command( [SectionCollapseAll] )
Insert this formula to expand all sections on a document.
@Command( [SectionExpandAll] )
Expand and Collapse All View Categories
|