tvSetPictureRight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| ?r2=(.*)\|RETURNVALUE= *" to " |r2=(.*)|RETURNVALUE2=")
m (Fix bad regex effects)
Tag: Undo
Line 3: Line 3:


| arma3 |Game name=
| arma3 |Game name=
|1.62|Game version=
|1.62|Game version=


|gr1= GUI Control |GROUP1=
|gr1= GUI Control |GROUP1=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 15: Line 14:
| [[tvSetPictureRight]] [idc, path, name] |SYNTAX=
| [[tvSetPictureRight]] [idc, path, name] |SYNTAX=


| p1= [idc, path, name]: [[Array]] |PARAMETER1=
| p1= idc: [[Number]] |PARAMETER1=
 
| p2= idc: [[Number]] |PARAMETER2=  


| p3= path: [[Array]] - path to tree view item |PARAMETER3=  
| p2= path: [[Array]] - path to tree view item |PARAMETER2=


| p4= name: [[String]] - picture texture |PARAMETER4=
| p3= name: [[String]] - picture texture |PARAMETER3=


| [[Nothing]] |RETURNVALUE=  
| [[Nothing]] |RETURNVALUE=  
____________________________________________________________________________________________
____________________________________________________________________________________________


| s2= control [[tvSetPictureRight]] [path, name] |SYNTAX2=
| s2= control [[tvSetPictureRight]] [path, name] |SYNTAX2=


|p21= control: [[Control]] |PARAMETER1=
|p21= control: [[Control]] |PARAMETER21=  
 
| p22= [path, name]: [[Array]] |PARAMETER2=  


| p23= path: [[Array]] - path to tree view item |PARAMETER3=  
|p22= path: [[Array]] - path to tree view item |PARAMETER22=  


| p24= name: [[String]] - picture texture |PARAMETER4=
|p23= name: [[String]] - picture texture |PARAMETER23=


|r2=(.*)|RETURNVALUE2=  
|r2= [[Nothing]] |RETURNVALUE2=  
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 56: Line 50:


<h3 style='display:none'>Bottom Section</h3>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]

Revision as of 21:47, 24 September 2020

Hover & click on the images for description

Description

Description:
Sets right picture on the tree view item defined by path
Groups:
GUI Control

Syntax

Syntax:
tvSetPictureRight [idc, path, name]
Parameters:
idc: Number
path: Array - path to tree view item
name: String - picture texture
Return Value:
Nothing

Alternative Syntax

Syntax:
control tvSetPictureRight [path, name]
Parameters:
control: Control
path: Array - path to tree view item
name: String - picture texture
Return Value:
Nothing

Examples

Example 1:
tvSetPictureRight [101, [0], "picture"];
Example 2:
_ctrl tvSetPictureRight [[0], "picture"];

Additional Information

See also:
tvAddtvCleartvCollapsetvCounttvCurSeltvDatatvDeletetvExpandtvPicturetvSetCurSeltvSetDatatvSetValuetvSorttvSortByValuetvValuetvTexttvSetTexttvSetPicturetvSetPictureColortvSetPictureColortvSetPictureColorSelectedtvSetPictureColorDisabledtvSetPictureRightColortvSetPictureRightColorSelectedtvSetPictureRightColorDisabled

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

Bottom Section