lbCurSel: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:Scripting Commands ArmA|" to "[[Category:Scripting Commands Armed Assault|")
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *S([a-z ])" to "$1 - s$2")
 
(36 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1= 1.75


|1.5|Game version=
|game2= ofpe
|version2= 1.00


____________________________________________________________________________________________
|game3= arma1
|version3= 1.00


| Returns the index of the selected item of the listbox, combobox or toolbox with id idc of the topmost user [[dialog]]. For listbox  LB_MULTI (multi-selection) use [[lbSelection]]. |DESCRIPTION=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


|'''lbCurSel''' idc |SYNTAX=
|game5= arma2oa
|version5= 1.50


|p1= idc: [[Number]] |PARAMETER1=
|game6= tkoh
|version6= 1.00


| [[Number]] |RETURNVALUE=
|game7= arma3
|version7= 0.50


|s2= '''lbCurSel''' control |SYNTAX2=
|gr1= GUI Control - ListBox


|p21= control: [[Control]] |PARAMETER21=
|descr= Returns the index of the selected item of the [[CT_LISTBOX]], [[CT_LISTNBOX]], [[CT_COMBO]] or [[CT_TOOLBOX]]. For [[CT_LISTBOX]] with multi selection enabled use [[lbSelection]].


|r2= [[Number]] |RETURNVALUE2=____________________________________________________________________________________________
|s1= [[lbCurSel]] idc
 
|x1= <code>_index = [[lbCurSel]] 101;</code> |EXAMPLE1=
|x2= <code>[[lbCurSel]] _ctrl;</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[lbAdd]], [[lbClear]], [[lbColor]], [[lbData]], [[lbDelete]], [[lbIsSelected]], [[lbPicture]], [[lbSelection]], [[lbSetColor]], [[lbSetCurSel]], [[lbSetData]], [[lbSetPicture]], [[lbSetSelected]], [[lbSetTooltip]], [[lbSetValue]], [[lbSize]], [[lbSort]], [[lbSortByValue]], [[lbText]], [[lbValue]] |SEEALSO=
|p1= idc: [[Number]]


|r1= [[Number]] - selected index (row) or -1 if nothing is selected
|s2= [[lbCurSel]]  control
|p21= control: [[Control]]
|r2= [[Number]] - selected index (row) or -1 if nothing is selected
|x1= <sqf>_index = lbCurSel 101;</sqf>
|x2= <sqf>lbCurSel _ctrl;</sqf>
|seealso= [[lbIsSelected]] [[lbSelection]] [[lbSetCurSel]]
}}
}}


<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
 
<dt></dt>
<dd class="notedate">Posted: Sep 10 2014</dd>
<dd class="notedate">Posted: Sep 10 2014</dd>
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
<dd class="note">More information on the LB command family can be found [[List Box|here]]
<dd class="note">More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|LBCURSEL]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|LBCURSEL]]
[[Category:Scripting Commands Armed Assault|LBCURSEL]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
 
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on July 11, 2014 - 05:05 (UTC)</dd>
<dt class="note">[[User:Ebay|Ebay]]</dt>
<dd class="note">
If nothing is selected this command returns -1
</dd>
</dl>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 16:49, 8 November 2023

Hover & click on the images for description

Description

Description:
Returns the index of the selected item of the CT_LISTBOX, CT_LISTNBOX, CT_COMBO or CT_TOOLBOX. For CT_LISTBOX with multi selection enabled use lbSelection.
Groups:
GUI Control - ListBox

Syntax

Syntax:
lbCurSel idc
Parameters:
idc: Number
Return Value:
Number - selected index (row) or -1 if nothing is selected

Alternative Syntax

Syntax:
lbCurSel control
Parameters:
control: Control
Return Value:
Number - selected index (row) or -1 if nothing is selected

Examples

Example 1:
_index = lbCurSel 101;
Example 2:
lbCurSel _ctrl;

Additional Information

See also:
lbIsSelected lbSelection lbSetCurSel

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
Posted: Sep 10 2014
ffur2007slx2_5
More information on the CT_LISTBOX command family can be found here.