lnbSetPicture: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
||
Line 55: | Line 55: | ||
<dd class="note"> | <dd class="note"> | ||
{{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. | {{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 | <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> | ||
}} | }} | ||
</dd> | </dd> | ||
</dl> | </dl> |
Revision as of 11:18, 12 May 2022
Description
- Description:
- Sets the picture in the item with the given position of the 2D listbox.The picture is searched in the mission, directory, the dtaExt subdirectory of the campaign directory, and the dtaExt directory and the data bank (or directory).
- Groups:
- GUI Control - ListNBox
Syntax
- Syntax:
- lnbSetPicture [idc, [row, column], picturePathOrName]
- Parameters:
- idc: Number
- row: Number
- column: Number
- picturePathOrName: String
- Return Value:
- Nothing
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:
- lnbPicture lnbSetPictureRight lnbPictureRight
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