poISection GetDisplayOption
Gets the state of the given section display option.
Syntax
poISection_handle GetDisplayOption name
Application
HyperView Tcl Query
Description
This command returns the state of the given section display option.
Inputs
- name
 - The name of the section display option:
- “gridlines”
 - Display of grid lines.
 - “grixtext”
 - Display of values around the grid.
 
 
Example
To get the state of a section display
        option:
    hwi OpenStack
hwi GetSessionHandle sess
sess GetProjectHandle proj
proj GetPageHandle page [proj GetActivePage]
page GetWindowHandle win [page GetActiveWindow]
win GetClientHandle post_handle
post_handle GetSectionHandle section_handle [post_handle AddSection 0]
# Get gridlines status
section_handle GetDisplayOption "gridlines"
hwi CloseStackErrors
Returns false.