lbSetPicture: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (formatting)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp


|
|version1= 1.75
 
|game2= ofpe
 
|version2= 1.00
 
|game3= arma1
 
|version3= 1.00
 
|game4= arma2
 
|version4= 1.00
 
|game5= arma2oa
 
|version5= 1.51
 
|game6= tkoh
 
|version6= 1.00
 
|game7= arma3
 
|version7= 0.50


|arg= local
|arg= local
Line 11: Line 35:
|gr1= GUI Control - ListBox
|gr1= GUI Control - ListBox


| Sets the picture in the item (left) with the given index of the listbox or combobox with id idc of the topmost user [[dialog]]. Name is the picture name. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).<br>
|descr= Sets the left picture in the row with given index of [[CT_LISTBOX]] or [[CT_COMBO]]. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).<br>
In Arma 3 it might be necessary to set the color of the picture as well with [[lbSetPictureColor]] as default [0,0,0,0] color makes picture invisible.
{{Feature|arma3|In Arma 3 it might be necessary to set the color of the picture as well with [[lbSetPictureColor]] as default color {{ic|[0,0,0,0]}} makes the picture invisible.}}
 
|s1= '''lbSetPicture''' [idc, index, path]
 
|p2= idc: [[Number]] - Control IDC


| '''lbSetPicture''' [idc, index, name]
|p1= [idc, index, name]: [[Array]]
|p2= idc: [[Number]] of control
|p3= index: [[Number]]
|p3= index: [[Number]]
|p4= name: [[String]]
| [[Nothing]]


|s2= control '''lbSetPicture''' [index, name]
|p4= path: [[String]] - Path to the picture
 
|r1= [[Nothing]]
 
|s2= control '''lbSetPicture''' [index, path]


|p21= control: [[Control]]
|p21= control: [[Control]]
|p22= [index, name]: [[Array]]
|p23= index: [[Number]]


|p24= name: [[String]]
|p22= index: [[Number]]
 
|p23= path: [[String]] - Path to the picture
 
|r2= [[Nothing]]
|r2= [[Nothing]]
   
   
|x1= <code>[[lbSetPicture]] [101, 0, "iskoda"];</code>
|x1= <code>[[lbSetPicture]] [101, 0, "iskoda.paa"];</code>


|x2= <code>_control [[lbSetPicture]] [0, "iskoda"];</code>
|x2= <code>_control [[lbSetPicture]] [0, "iskoda.paa"];</code>


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


Line 42: Line 70:
<dd class="note">More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
<dd class="note">More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
</dl>
</dl>
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
<dl class="command_description">
<dt></dt>
<dd class="notedate">Posted on August 18, 2015 - 09:49 (UTC)</dd>
<dt class="note">[[User:IT07|IT07]]</dt>
<dd class="note">
(Arma 3) To place an image on the right end of the listItem: <code>_ctrl lbSetPictureRight [_index, "A3\path\to\image.paa"];</code>
</dd>
</dl>


<dl class="command_description">
<dl class="command_description">

Revision as of 00:04, 13 April 2021

Hover & click on the images for description

Description

Description:
Sets the left picture in the row with given index of CT_LISTBOX or CT_COMBO. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).
Arma 3
In Arma 3 it might be necessary to set the color of the picture as well with lbSetPictureColor as default color [0,0,0,0] makes the picture invisible.
Groups:
GUI Control - ListBox

Syntax

Syntax:
lbSetPicture [idc, index, path]
Return Value:
Nothing

Alternative Syntax

Syntax:
control lbSetPicture [index, path]
Parameters:
control: Control
index: Number
path: String - Path to the picture
Return Value:
Nothing

Examples

Example 1:
lbSetPicture [101, 0, "iskoda.paa"];
Example 2:
_control lbSetPicture [0, "iskoda.paa"];

Additional Information

See also:
lbPicture lbSetPictureColor 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
Posted: Sep 10 2014
ffur2007slx2_5
More information on the CT_LISTBOX command family can be found here.
Posted on April 6, 2021 - 07:34 (UTC)
R3vo
Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the scheduled environment. One drawback of that method is, that sorting the entries is not easily possible. private _path = _ctrlTV tvAdd [[], "Some Entry"];
[_ctrlTV, _path] spawn {
(_this select 0) tvSetPictureRight [[_this select 1], "someImage.paa"];
};