tvSort: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also)
(updated description)
Line 7: Line 7:


|gr1= GUI Control - Tree View |GROUP1=
|gr1= GUI Control - Tree View |GROUP1=
____________________________________________________________________________________________


| Sorts childrens of given item by item name ([[tvText]]). IDC means id of parent Tree View.
| Sorts all children of given path. Text of [[CT_TREE|Tree View]] entries is used for sorting. |DESCRIPTION=
<br>
Param ''reversed'' is optional. |DESCRIPTION=
____________________________________________________________________________________________


| control [[tvSort]] [path, reversed] |SYNTAX=
| control [[tvSort]] [path, reversed] |SYNTAX=
Line 39: Line 35:


|x1= <code>control [[tvSort]] [<nowiki/>[0], [[true]]];</code> |EXAMPLE1=
|x1= <code>control [[tvSort]] [<nowiki/>[0], [[true]]];</code> |EXAMPLE1=
|x2= <code>[[tvSort]] [102, [0], [[true]]];</code> |EXAMPLE2=
|x2= <code>[[tvSort]] [102, [0], [[true]]];</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[tvSortAll]] [[tvSortByValue]] [[tvSortByValueAll]] |SEEALSO=
| [[tvSortAll]] [[tvSortByValue]] [[tvSortByValueAll]] |SEEALSO=
|  |MPBEHAVIOUR=
____________________________________________________________________________________________
}}
}}



Revision as of 18:21, 3 December 2020

Hover & click on the images for description

Description

Description:
Sorts all children of given path. Text of Tree View entries is used for sorting.
Groups:
GUI Control - Tree View

Syntax

Syntax:
control tvSort [path, reversed]
Parameters:
control: Control
[path, reversed]: Array
path: Array - Tree View Path of the parent item to sort
reversed (Optional): Boolean - true to reverse sort it. Default: false
Return Value:
Nothing

Alternative Syntax

Syntax:
tvSort [idc, path, reversed]
Parameters:
[idc, path, reversed]: Array
idc: Number - control idc
path: Array - Tree View Path of the parent item to sort
reversed (Optional): Boolean - true to reverse sort it. Default: false
Return Value:
Nothing

Examples

Example 1:
control tvSort [[0], true];
Example 2:
tvSort [102, [0], true];

Additional Information

See also:
tvSortAll tvSortByValue tvSortByValueAll

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section