lnbSetText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "lnbsetColumnsPos" to "lnbSetColumnsPos")
m (example)
Line 10: Line 10:
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''lnbSetText''' [idc,[row,column],data] |= Syntax
| [[lnbSetText]] [idc,[row,column],data] |= Syntax


|p1= [idc,[row,column],data]: Array - |= PARAMETER1  
|p1= [idc,[row,column],data]: [[Array]] |= PARAMETER1  
 
|p2= |= PARAMETER2
 
|p3= |= PARAMETER3


| Nothing |= RETURNVALUE  
| Nothing |= RETURNVALUE  


____________________________________________________________________________________________


|x1= <code>{{Example needed}}</code>|= Example 1
|x1= <code>[[lnbSetText]] [101, [0,1], "#1"];</code>|= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 15:21, 9 September 2014

Hover & click on the images for description

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

Bottom Section