TableBox.Expand

Syntax:

Expand(<Row>, <WithSubordinates>)

Parameters:

<Row> (required)

Table box row. The type of table box row value is defined in descriptions of table box extensions for corresponding objects.

<WithSubordinates> (optional)

Type: Boolean.
You can use it to specify if it is necessary to open subordinate nodes. True - open subordinate nodes, False - not to open subordinate nodes.
Default value: False.

Description:

Expands the node in the tree row specified.

Availability:

Thick client.

Note:

Used if the values tree or catalog list in tree form are linked to the table box.

Example:

// Expand current line in a tree:
Line = Controls.TableBox.CurrentRow;
Controls.TableBox.Expand(Line, True);


    

1C:Enterprise Developer's Community