lbText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|r2= String |RETURNVALUE= " to "|r2= String |RETURNVALUE2=")
Line 14: Line 14:
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''lbText''' [idc, index] |SYNTAX=
| [[lbText]] [idc, index] |SYNTAX=
|p1= [idc, index]: [[Array]] |PARAMETER1=
|p1= [idc, index]: [[Array]] |PARAMETER1=
|p2= idc: [[Number]] of control |PARAMETER2=
|p2= idc: [[Number]] of control |PARAMETER2=
|p3= index: [[Number]] |PARAMETER3=
|p3= index: [[Number]] |PARAMETER3=
| [[String]] |RETURNVALUE=
| [[String]] |RETURNVALUE=


|s2= control '''lbText''' index |SYNTAX2=
|s2= control [[lbText]] index |SYNTAX2=


|p21= control: [[Control]] |PARAMETER21=
|p21= control: [[Control]] |PARAMETER21=
|p22= index: [[Number]] |PARAMETER2=
 
|r2= [[String]] |RETURNVALUE2=____________________________________________________________________________________________
|p22= index: [[Number]] |PARAMETER22=
 
|r2= [[String]] |RETURNVALUE2=
____________________________________________________________________________________________
   
   
|x1= <code>_text = [[lbText]] [101, 0];</code> |EXAMPLE1=
|x1= <code>_text = [[lbText]] [101, 0];</code> |EXAMPLE1=
Line 45: Line 51:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|LBTEXT]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|LBTEXT]]
[[Category:Scripting Commands ArmA|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA|LBTEXT]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 20:21, 5 December 2019

Hover & click on the images for description

Description

Description:
Returns the shown text in the item with the given index of the listbox or combobox with id idc of the topmost user dialog.
Groups:
Uncategorised

Syntax

Syntax:
lbText [idc, index]
Parameters:
[idc, index]: Array
idc: Number of control
index: Number
Return Value:
String

Alternative Syntax

Syntax:
control lbText index
Parameters:
control: Control
index: Number
Return Value:
String

Examples

Example 1:
_text = lbText [101, 0];
Example 2:
_text = _control lbText 0;

Additional Information

See also:
lbAddlbClearlbColorlbCurSellbDatalbDeletelbIsSelectedlbPicturelbSelectionlbSetColorlbSetCurSellbSetDatalbSetPicturelbSetSelectedlbSetTooltiplbSetValuelbSizelbSortlbSortByValuelbValue

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

Posted: Sep 10 2014
ffur2007slx2_5
More information on the LB command family can be found here

Bottom Section