lnbSetText: Difference between revisions
Jump to navigation
Jump to search
Fred Gandt (talk | contribs) m (Text replacement - "lnbsetColumnsPos" to "lnbSetColumnsPos") |
m (example) |
||
Line 10: | Line 10: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | [[lnbSetText]] [idc,[row,column],data] |= Syntax | ||
|p1= [idc,[row,column],data]: Array | |p1= [idc,[row,column],data]: [[Array]] |= PARAMETER1 | ||
| Nothing |= RETURNVALUE | | Nothing |= RETURNVALUE | ||
____________________________________________________________________________________________ | |||
|x1= <code> | |x1= <code>[[lnbSetText]] [101, [0,1], "#1"];</code>|= Example 1 | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 14:21, 9 September 2014
Description
- Description:
- Sets the additional text (invisible) in the item with the given position of the 2D listbox.
- Groups:
- Uncategorised
Syntax
- Syntax:
- lnbSetText [idc,[row,column],data]
- Parameters:
- [idc,[row,column],data]: Array
- Return Value:
- Nothing
Examples
- Example 1:
lnbSetText [101, [0,1], "#1"];
Additional Information
- See also:
- lnbAddArraylnbAddColumnlnbAddRowlnbClearlnbColorlnbCurSelRowlnbDatalnbDeleteColumnlnbDeleteRowlnbGetColumnsPositionlnbPicturelnbSetColorlnbSetColumnsPoslnbSetCurSelRowlnbSetDatalnbSetPicturelnbSetValuelnbSizelnbTextlnbValue
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
-
Alternative (arma style) syntax:
// _dspl of Display type, _idc of Number type
_ctrlTable = _dspl displayCtrl _idc;
_row = 0;
_col = 0;
_ctrlTable lnbSetText [[_row, _col], "text"];
DenV