lbSetSelected: Difference between revisions
Lou Montana (talk | contribs)  | 
				Lou Montana (talk | contribs)  m (Text replacement - "since= Arma3" to "since= arma3")  | 
				||
| (9 intermediate revisions by 3 users not shown) | |||
| Line 19: | Line 19: | ||
|descr= Sets the selection state of the given row of the given listbox of style LB_MULTI.  | |descr= Sets the selection state of the given row of the given listbox of style LB_MULTI.  | ||
The command has to be called for every row which is needed to be selected in multi-selection listbox.  | The command has to be called for every row which is needed to be selected in multi-selection listbox. Use negative index -1 to select/deselect all rows (since {{GVI|arma3|2.12}}).  | ||
For single selection listbox use [[lbSetCurSel]] instead.  | For single selection listbox use [[lbSetCurSel]] instead.  | ||
|s1= control [[lbSetSelected]] [index, selected]  | |s1= control [[lbSetSelected]] [index, selected, forceEH]  | ||
|p1= control: [[Control]]  | |p1= control: [[Control]]  | ||
|p2= index: [[Number]]  | |p2= index: [[Number]] or since {{GVI|arma3|2.12}} [[Array]] of [[Number]]s   | ||
|p3= selected: [[Boolean]]  | |p3= selected: [[Boolean]]  | ||
|p4= forceEH: [[Boolean]] - (Optional, default [[false]]) will force [[User_Interface_Event_Handlers#onLBSelChanged | lbSelChanged]] EH to fire  | |||
|p4since= arma3 2.12  | |||
|r1= [[Nothing]]  | |r1= [[Nothing]]  | ||
|x1= <  | |x1= <sqf>_control lbSetSelected [0, true];</sqf>  | ||
|seealso= [[lbAdd]] [[lbClear]] [[lbColor]] [[lbCurSel]] [[lbData]] [[lbDelete]] [[lbIsSelected]] [[lbPicture]] [[lbSelection]] [[lbSetColor]] [[lbSetCurSel]] [[lbSetData]] [[lbSetPicture]] [[lbSetTooltip]] [[lbSetValue]] [[lbSize]] [[lbSort]]  | |seealso= [[lbAdd]] [[lbClear]] [[lbColor]] [[lbCurSel]] [[lbData]] [[lbDelete]] [[lbIsSelected]] [[lbPicture]] [[lbSelection]] [[lbSetColor]] [[lbSetCurSel]] [[lbSetData]] [[lbSetPicture]] [[lbSetTooltip]] [[lbSetValue]] [[lbSize]] [[lbSort]] [[lbSortByValue]] [[lbText]] [[lbValue]]  | ||
}}  | }}  | ||
Latest revision as of 16:26, 9 February 2024
Description
- Description:
 - Sets the selection state of the given row of the given listbox of style LB_MULTI.
The command has to be called for every row which is needed to be selected in multi-selection listbox. Use negative index -1 to select/deselect all rows (since 
 2.12).
For single selection listbox use lbSetCurSel instead. - Groups:
 - GUI Control - ListBox
 
Syntax
- Syntax:
 - control lbSetSelected [index, selected, forceEH]
 - Parameters:
 - control: Control
 - index: Number or since 
 2.12 Array of Numbers - selected: Boolean
 - since 
 2.12 - forceEH: Boolean - (Optional, default false) will force lbSelChanged EH to fire
 - Return Value:
 - Nothing
 
Examples
- Example 1:
 
Additional Information
- See also:
 - lbAdd lbClear lbColor lbCurSel lbData lbDelete lbIsSelected lbPicture lbSelection lbSetColor lbSetCurSel lbSetData lbSetPicture lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbValue
 
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 
Categories: 
- Scripting Commands
 - Introduced with Armed Assault version 1.00
 - ArmA: Armed Assault: New Scripting Commands
 - ArmA: Armed Assault: Scripting Commands
 - Arma 2: Scripting Commands
 - Arma 2: Operation Arrowhead: Scripting Commands
 - Take On Helicopters: Scripting Commands
 - Arma 3: Scripting Commands
 - Command Group: GUI Control - ListBox