lbSortBy

From Bohemia Interactive Community
Revision as of 11:30, 16 May 2021 by Killzone Kid (talk | contribs) (Created page with "{{RV|type=command |arma 3 |2.06 |gr1= GUI Control - ListBox |Sorts given ListBox by either lbText, lbValue or lbData in normal or reversed order, using case-se...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Description needed
Groups:
GUI Control - ListBox

Syntax

Syntax:
Syntax needed
Parameters:
controlOrIDC: Control or Number - the ListBox control or its IDC
[sortByType, reversedOrder, caseSensitive]: Array
sortByType (Optional): String - one of "TEXT", "VALUE" or "DATA". Default: "TEXT"
reversedOrder (Optional): Boolean - true for sorting in reversed order. Default: false
caseSensitive (Optional): Boolean - true for using case-sensitive comparison. Default: false
Return Value:
Return value needed

Examples

Example 1:
with uiNamespace do { lb = findDisplay 46 createDisplay "RscDisplayEmpty" ctrlCreate ["RscListBox", -1]; lb ctrlSetPosition [0,0,1,1]; lb ctrlCommit 0; lbClear lb; { lb lbAdd (_x select 0); lb lbSetValue [_forEachIndex, _x select 1]; } forEach [["В",1],["Я",0],["Б",1],["Ю",0],["А",1]]; lb lbSortBy ["VALUE", false, false]; };

Additional Information

See also:
lnbSortBylnbSortlnbSortByValuelbSortlbSortByValuetvSorttvSortByValuesort

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