ChartOfAccountsExtDimensionTypes.<Chart of Accounts name>.Move

Syntax:

Move(<Row>, <Offset>)

Parameters:

<Row> (required)

Type: Number; ChartOfAccountsExtDimensionTypesRow..
Index of the row to be moved, or the row itself.

<Offset> (required)

Type: Number.
Number of positions that the row must be moved by. Positive value means that the row will be moved downward to the end of the tabular section, and negative value moves it upward to the top.

Description:

Shifts the a table field's row by the specified number of places.

Availability:

Server, thick client, external connection.

Note:

The method can be used only when the tabular section is obtained from an object's property. If the tabular section is obtained from a reference property (or selection property), using this method would cause a runtime error.

Example:

// move 2nd line to the previous position
Content.Move(1, -1);
// move 2nd line to the next position
Content.Move(1, 1);


    

1C:Enterprise Developer's Community