ITreeListColumn.Position

Syntax

Position: Integer;

Description

The Position property determines a column position.

Comments

By default, the number of position equals to the index of the current column (ITreeListColumn.Index).

The number of position must be not less than 0 and not greater than ITreeListColumns.Count.

Example

Executing the example requires a form containing the Button component with the Button1 identifier and the TreeList component with the TreeList1 identifier. At least two columns must be added to the TreeList1 component. The example is a handler of the OnClick event for the Button1 component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    TreeList1.Columns.Item(0).Position := 1;
End Sub Button1OnClick;

After executing the example the first and the second table columns exchange their positions.

See also:

ITreeListColumn