ValueTreeColumnCollection.Move
Syntax:
Parameters:
<Column> (required)
Index of the column being moved or the column itself.
<Offset> (required)
Number of positions the column must be moved by. A positive value means it will be shifted to the end, and a negative value shifts to the beginning of the collection.
Description:
Availability:
Example:
// move a column to the next position ContentColumns.Move(CurColumnIndex, 1); // move a column to the previous position ContentColumns.Move(CurColumnIndex, -1); |