lnbSetPicture: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
No edit summary
Line 49: Line 49:
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
<dl class="command_description">
<dt></dt>
<dd class="notedate">Posted on April 6, 2021 - 07:35 (UTC)</dd>
<dt class="note">[[User:R3vo|R3vo]]</dt>
<dd class="note">{{#if:
{{Feature|Informative|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.
<code>[[private]] _path {{=}} _ctrlTV [[tvAdd]] <nowiki>[</nowiki>[], "Some Entry"];<br>[_ctrlTV, _path] [[spawn]] {<br>  (_this [[select]] 0) [[tvSetPictureRight]] <nowiki>[</nowiki>[_this [[select]] 1], "someImage.paa"];<br>};</code>
}}
|
{{Feature|Informative|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.
<code>[[private]] _path {{=}} _ctrlTV [[tvAdd]] <nowiki>[</nowiki>[], "Some Entry"];<br>[_ctrlTV, _path] [[spawn]] {<br>  (_this [[select]] 0) [[tvSetPictureRight]] <nowiki>[</nowiki>[_this [[select]] 1], "someImage.paa"];<br>};</code>
}}
|-no text provided-}}</dd>
</dl>

Revision as of 09:35, 6 April 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
GUI Control - ListNBox

Syntax

Syntax:
Syntax needed
Parameters:
idc: Number
row: Number
column: Number
picturePathOrName: String
Return Value:
Return value needed

Alternative Syntax

Syntax:
ctrl lnbSetPicture [[row, column], picturePathOrName]
Parameters:
ctrl: Control
Row: Number
Column: Number
picturePathOrName: String
Return Value:
Nothing

Examples

Example 1:
lnbSetPicture [1, [0, 0], "Picture"];
Example 2:
_ctrl lnbSetPicture [[0, 0], "\A3\Ui_f\data\GUI\Cfg\Ranks\lieutenant_gs.paa"];

Additional Information

See also:
lnbAddArraylnbAddColumnlnbAddRowlnbClearlnbColorlnbCurSelRowlnbDatalnbDeleteColumnlnbDeleteRowlnbGetColumnsPositionlnbPicturelnbSetColorlnbSetColumnsPoslnbSetCurSelRowlnbSetDatalnbSetTextlnbSetValuelnbSizelnbTextlnbValue

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 on April 6, 2021 - 07:35 (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"];
};