lnbColor: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Fix bad regex effects)
Tag: Undo
Line 14: Line 14:
| [[lnbColor]] [idc, [row, column]] |SYNTAX=
| [[lnbColor]] [idc, [row, column]] |SYNTAX=


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


|p4= row: [[Number]] |PARAMETER3=
|p2= row: [[Number]] |PARAMETER2=
|p5= column: [[Number]] |PARAMETER4=


| [[Array]] |RETURNVALUE=  
|p3= column: [[Number]] |PARAMETER3=


| [[Array]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


| s2= control [[lnbColor]] [row, column] |SYNTAX2=
|s2= control [[lnbColor]] [row, column] |SYNTAX2=


|p21= control: [[Control]] |PARAMETER21
|p21= control: [[Control]] |PARAMETER21=
|p22= [row, column]: [[Array]] |PARAMETER22=
|p23= row: [[Number]] |PARAMETER23=


|p24= column: [[Number]] |Parameter24=
|p22= row: [[Number]] |PARAMETER22=


|r2=(.*)|RETURNVALUE2=  
|p23= column: [[Number]] |Parameter23=


|r2= [[Array]] |RETURNVALUE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>_ctrl [[lnbColor]] [0,0];</code>|EXAMPLE1=
|x1= <code>_ctrl [[lnbColor]] [0,0];</code>|EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 96: Line 92:


<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Scripting Commands Arma 2|{{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}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]

Revision as of 02:49, 25 September 2020

Hover & click on the images for description

Description

Description:
Returns the text color of the item with the given position of the 2D listbox. The color is returned in format Color.
Groups:
GUI Control

Syntax

Syntax:
lnbColor [idc, [row, column]]
Parameters:
idc: Number
row: Number
column: Number
Return Value:
Array

Alternative Syntax

Syntax:
control lnbColor [row, column]
Parameters:
control: Control
row: Number
column: Number
Return Value:
Array

Examples

Example 1:
_ctrl lnbColor [0,0];

Additional Information

See also:
lnbAddArraylnbAddColumnlnbAddRowlnbClearlnbCurSelRowlnbDatalnbDeleteColumnlnbDeleteRowlnbGetColumnsPositionlnbPicturelnbSetColorlnbSetColumnsPoslnbSetCurSelRowlnbSetDatalnbSetPicturelnbSetTextlnbSetValuelnbSizelnbTextlnbValue

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 on Sep 9 2014
ffur2007slx2_5
(A3 1.28)As for invisible data processing, lnbAddArray, lnbAddColumn, lnbData, lnbGetColumnsPosition, lnbSetColumnsPos, lnbSetData, lnbSetText, lnbSetValue, lnbText and lnbValue store data types into exact position of the listNbox with different spaces. Accessing data with coordinate command at nearly the same syntax: //Set same value to one position of a Control _ctrl lnbSetData [ [0,0],"#1"]; lnbSetColumnsPos [102, [0,1], 1]; _ctrl lnbSetText [ [0,1], "#1"]; _ctrl lnbSetValue [ [0,0],1]; //Accessing the value disregard affecting one another. _ctrl lnbData [0,0]; //"#1" lnbGetColumnsPosition _ctrl //[1]; _ctrl lnbText [0,0];//"#1" _ctrl lnbValue [0,0];//1 For a direct visible control over CT_LISTNBOX: 0 = [_CT_LISTNBOX] spawn { private ["_CT_LISTNBOX","_color","_current","_pic"]; disableSerialization; _CT_LISTNBOX = _this select 0; { _CT_LISTNBOX lnbAddRow [ getText (_x >> "displayNameShort"),getText (_x >> "displayName")]; _CT_LISTNBOX lnbSetPicture [ [_foreachIndex,0],getText (_x >> "texture")]; } forEach ("isClass _x" configClasses (configFile >> "CfgRanks")); _CT_LISTNBOX lnbSetCurSelRow 0; WuChaoRen 000.png _current = lnbCurSelRow _CT_LISTNBOX; _color = _CT_LISTNBOX lnbColor [_current,0]; _CT_LISTNBOX lnbSetColor [ [_current,1], [(_color select 0)/2,0,0,1] ]; WuChaoRen 001.png _CT_LISTNBOX lnbDeleteColumn 0; WuChaoRen 002.png _CT_LISTNBOX lnbDeleteRow 1; WuChaoRen 003.png sleep 1; lnbClear _CT_LISTNBOX;//Clear all items but control still remains just invisible. }; A combined use of both invisible and visible data processing commands alive the Control.

Bottom Section