Shiny Language Reference

Language Reference > Panel Functions


getpanelallowresize

bool getpanelallowresize();

 

 

Retrieves whether the display panel can be resized

GETPANELALLOWRESIZE returns the internal state controlling whether the panel can be resized. Refer to setpanelallowresize documentation for information on this state.

 

Parameters

None

 

Return Value

True if the panel resize functions are enabled, otherwise False

 

Example Code

// Prevent any use or change to the resize handle
setpanelallowresize(False);

// Test the state of the resize handle (will of course return FALSE)
bool State = getpanelallowresize();