lbSetText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>")
m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>")
Line 47: Line 47:
|r2= [[Nothing]]
|r2= [[Nothing]]


|x1= <code>lbSetText [101, 0, "iskoda"];</code>
|x1= <sqf>lbSetText [101, 0, "iskoda"];</sqf>


|x2= <code>_control lbSetText [0, "iskoda"];</code>
|x2= <sqf>_control lbSetText [0, "iskoda"];</sqf>


|seealso= [[lbAdd]] [[lbClear]] [[lbColor]] [[lbCurSel]] [[lbData]] [[lbDelete]] [[lbIsSelected]] [[lbPicture]] [[lbSelection]] [[lbSetColor]] [[lbSetCurSel]] [[lbSetData]] [[lbSetSelected]] [[lbSetTextRight]] [[lbSetTooltip]] [[lbSetValue]] [[lbSize]] [[lbSort]] [[lbSortByValue]] [[lbText]] [[lbValue]] [[lbSetPicture]] [[lbSetPictureColor]]
|seealso= [[lbAdd]] [[lbClear]] [[lbColor]] [[lbCurSel]] [[lbData]] [[lbDelete]] [[lbIsSelected]] [[lbPicture]] [[lbSelection]] [[lbSetColor]] [[lbSetCurSel]] [[lbSetData]] [[lbSetSelected]] [[lbSetTextRight]] [[lbSetTooltip]] [[lbSetValue]] [[lbSize]] [[lbSort]] [[lbSortByValue]] [[lbText]] [[lbValue]] [[lbSetPicture]] [[lbSetPictureColor]]

Revision as of 11:23, 13 May 2022

Hover & click on the images for description

Description

Description:
Sets the text on the left side of the item with the given index of the listbox or combobox with id idc of the topmost user dialog.
Groups:
GUI Control - ListBox

Syntax

Syntax:
lbSetText [idc, index, name]
Parameters:
[idc, index, name]: Array
idc: Number of control
index: Number
name: String
Return Value:
Nothing

Alternative Syntax

Syntax:
control lbSetText [index, name]
Parameters:
control: Control
[index, name]: Array
index: Number
name: String
Return Value:
Nothing

Examples

Example 1:
lbSetText [101, 0, "iskoda"];
Example 2:
_control lbSetText [0, "iskoda"];

Additional Information

See also:
lbAdd lbClear lbColor lbCurSel lbData lbDelete lbIsSelected lbPicture lbSelection lbSetColor lbSetCurSel lbSetData lbSetSelected lbSetTextRight lbSetTooltip lbSetValue lbSize lbSort lbSortByValue lbText lbValue lbSetPicture lbSetPictureColor

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.