Sort(SortingType, bool)

Sorts the tree objects based on given parameters.

Type of sorting to apply.

Wheter to sort in reverse order.

Note that all parameters of Sort are optional. type: Defaults to alphabetical reverse: Defaults to false sorting in reverse order is currently not supported

    Usage example - sort alphabetically
               ExtAPI.DataModel.Tree.Sort()

    Usage example - sort alphabetically
               ExtAPI.DataModel.Tree.Find(type=SortingType.Alphabetical, reverse=False)

Declaration Syntax

public void Sort(SortingType type, bool reverse)

Parameters

type(SortingType)

No details are provided for this entry.

reverse(bool)

No details are provided for this entry.