"childrenCollapsible"

Defines or returns the information if all Modules within the splitter can be collapsed.

Synopsis

bool shape.childrenCollapsible(bool);

Parameter

Parameter Description
shape Object name

Description

The attribute defines or returns if all modules within the splitter object can be collapsed. By default all modules are collapsible.

A collapsible module can be reduced by the user to a size of 0. Even if a minimum size is defined for the module it can be reduced to a size of 0 if it is set as collapsible.

For separate modules the setting can also be made by using the "setCollapsible" function.

Example

Defines that the modules of the splitter object cannot be collapsed.

main()
{
  this.childrenCollapsible(false);
}

Assignment

Splitter