lbSetPictureColor: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replacement - "↵ ↵|" to " |")
 
(60 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| Arma 3|= Game name
|game1= arma3
|version1= 1.22


|1.22|= Game version
|gr1= GUI Control - ListBox


____________________________________________________________________________________________
|descr= Sets the color of item's picture (left) with the given index of the listbox with id idc of the topmost user dialog to the given color. Color is in format [[Color|Color (RGBA)]]. Color which consists from only zeros means disable this override.


| Sets the color of item's picture (left) with the given index of the listbox with id idc of the topmost user dialog to the given color. Color is in format [[Color]]. Color which consists from only zeros means disable this override. |= Description
|s1= [[lbSetPictureColor]] [idc, index, color]
____________________________________________________________________________________________


| '''lbSetPictureColor''' [idc, index, color] |= Syntax
|p1= idc: [[Number]] of control
|p1= [idc, index, name]: [[Array]] |= Parameter 1
|p2= idc: [[Number]] of control |= Parameter 2
|p3= index: [[Number]] |= Parameter 3
|p4= color: [[Array]] |= Parameter 4
| [[Nothing]] |= Return value


|s2= control '''lbSetPictureColor''' [index, color] |= Syntax
|p2= index: [[Number]]
|p21= control: [[Control]] |= Parameter 1
|p22= [index, name]: [[Array]] |= Parameter 2
|p23= index: [[Number]] |= Parameter 3
|p24= color: [[Array]] |= Parameter 4
|r2= [[Nothing]] |= Return value
____________________________________________________________________________________________


|p3= color: [[Array]] format [[Color|Color (RGBA)]]


|x1=<code>[[lbSetPictureColor]] [101, 0, [0, 1, 0, 0.5]];</code> |= Example 1  
|r1= [[Nothing]]
|x2= <code>_ctrl [[lbSetPictureColor]] [0, [1, 1, 1, 1]];</code> |= Example 2


____________________________________________________________________________________________
|s2= control [[lbSetPictureColor]]  [index, color]


| [[lbAdd]], [[lbClear]], [[lbColor]], [[lbCurSel]], [[lbData]], [[lbDelete]], [[lbIsSelected]], [[lbPicture]], [[lbSelection]], [[lbSetColor]], [[lbSetCurSel]], [[lbSetData]], [[lbSetSelected]], [[lbSetTooltip]], [[lbSetValue]], [[lbSize]], [[lbSort]], [[lbSortByValue]], [[lbText]], [[lbValue]], [[lbSetPicture]]|= See also
|p21= control: [[Control]]


}}
|p22= index: [[Number]]
 
|p23= color: [[Array]] format [[Color|Color (RGBA)]]
 
|r2= [[Nothing]]
 
|x1= <sqf>lbSetPictureColor [101, 0, [0, 1, 0, 0.5]];</sqf>


<h3 style="display:none">Notes</h3>
|x2= <sqf>_ctrl lbSetPictureColor [0, [1, 1, 1, 1]];</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->
<dd class="notedate">Posted: Sep 10 2014</dd>
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
<dd class="note">More information on the LB command family can be found [https://community.bistudio.com/wiki/List_Box here]
<!-- Note Section END -->
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[lbSetPictureColorSelected]] [[lbPicture]] [[lbSetColor]] [[lbSetPicture]] [[lbSetPictureRightColor]] [[lbSetPictureRight]]
[[Category:Scripting Commands|LBSETPICTURE]]
}}
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|LBSETPICTURE]]
[[Category:Scripting Commands ArmA|LBSETPICTURE]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]


<!-- CONTINUE Notes -->
{{Note
<dl class="command_description">
|user= ffur2007slx2_5
<dd class="notedate">Posted on August 18, 2015 - 09:55 (UTC)</dd>
|timestamp= 20140910163000
<dt class="note">[[User:IT07|IT07]]</dt>
|text= More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
<dd class="note">
}}
(ArmA 3 1.48) To give an image on the right side of a listbox item:
<code>_ctrl lbSetPictureRightColor [_index, [1,1,1,0.7]];</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Latest revision as of 13:45, 8 April 2024

Hover & click on the images for description

Description

Description:
Sets the color of item's picture (left) with the given index of the listbox with id idc of the topmost user dialog to the given color. Color is in format Color (RGBA). Color which consists from only zeros means disable this override.
Groups:
GUI Control - ListBox

Syntax

Syntax:
lbSetPictureColor [idc, index, color]
Parameters:
idc: Number of control
index: Number
color: Array format Color (RGBA)
Return Value:
Nothing

Alternative Syntax

Syntax:
control lbSetPictureColor [index, color]
Parameters:
control: Control
index: Number
color: Array format Color (RGBA)
Return Value:
Nothing

Examples

Example 1:
lbSetPictureColor [101, 0, [0, 1, 0, 0.5]];
Example 2:
_ctrl lbSetPictureColor [0, [1, 1, 1, 1]];

Additional Information

See also:
lbSetPictureColorSelected lbPicture lbSetColor lbSetPicture lbSetPictureRightColor lbSetPictureRight

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
ffur2007slx2_5 - c
Posted on Sep 10, 2014 - 16:30 (UTC)
More information on the CT_LISTBOX command family can be found here.