Skip to main content
Version: Next

LISTBOX COLLAPSE

LISTBOX COLLAPSE ( {* ;} object {; recursive {; selector {; line {; column}}}} )

ParameterTypeDescription
*Operator🡒If specified, object is an object name (string)
If omitted, object is a variable
objectForm object🡒Object name (if * is specified) or
Variable (if * is omitted)
recursiveBoolean🡒True = collapse sublevels
False = do not collapse sublevels
selectorLongint🡒Part of list box to collapse
lineLongint🡒Number of break row to collapse or
Number of list box level to collapse
columnLongint🡒Number of break column to collapse

Description

The LISTBOX COLLAPSE command is used to collapse the break rows of the list box object designated by the object and * parameters.

If you pass the optional * parameter, you indicate that the object parameter is an object name (string). If you do not pass this parameter, you indicate that the object parameter is a variable. In this case, you pass a variable reference instead of a string.

If the list box is not configured in hierarchical mode, the command does nothing. For more information about hierarchical list boxes, please refer to the Hierarchical list boxes section.

The optional recursive parameter is used to configure the collapsing of the hierarchical sublevels of the list box. Pass True or omit this parameter for the command to collapse all the levels and all the sublevels. If you pass False, only the first level will be collapsed.

The optional selector parameter is used to specify the scope of the command. You can pass one of the following constants, found in the List Box theme, in this parameter:

ConstantTypeValueComment
lk allLongint0The command affects all sub-levels (default value, used when parameter is omitted).
lk selectionLongint1The command affects selected sub-levels.
lk break rowLongint2The command affects the sub-level to which the "cell" designated by the row and column parameters belongs. Note that these parameters represent the row and column numbers in the list box in standard mode and not in its hierarchical representation. If the row and column parameters are omitted, the command does nothing.
lk levelLongint3The command affects all the break rows corresponding to the level column. This parameter designates a column number in the list box in standard mode and not in its hierarchical representation. If the level parameter is omitted, the command does nothing.

If the selection or list box does not contain a break row or if all the break rows are already collapsed, the command does nothing.

Example

This example collapses the first level of the break rows of the selection in the list box:

 LISTBOX COLLAPSE(*;"MyListbox";False;lk selection)

See also

LISTBOX EXPAND