ctrlSetEventHandler: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
(reverted code to string type)
Line 10: Line 10:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Control]] '''ctrlSetEventHandler''' ["handler name", {[[Code]]}] |= Syntax
| [[Control]] '''ctrlSetEventHandler''' ["handler name", "function"] |= Syntax


|p1= [[Control]] |= Parameter 1
|p1= [[Control]] |= Parameter 1


|p2= handler name: [[String]] |= Parameter 2
|p2= handler name: [[String]] |= Parameter 2
|p3= [[Code]]|= Parameter 2
|p3= function: [[String]]|= Parameter 2
| [[Nothing]] |= Return value
| [[Nothing]] |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>_control ctrlSetEventHandler ["KeyDown", {}]</pre> |= Example 1
|x1= <pre>_control ctrlSetEventHandler ["KeyDown", ""]</pre> |= Example 1


|x2= <pre>(_display displayCtrl 108) ctrlSetEventHandler ["LBSelChanged", {["ListChange",  
|x2= <pre>(_display displayCtrl 108) ctrlSetEventHandler ["LBSelChanged", "[""ListChange"",  
_this] call FireEvents}];</pre> |= Example 2 (using call)
_this] call FireEvents]";</pre> |= Example 2 (using call)





Revision as of 02:52, 7 September 2007

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Sets given event handler of given control.
Groups:
Uncategorised

Syntax

Syntax:
Control ctrlSetEventHandler ["handler name", "function"]
Parameters:
Control
handler name: String
function: String
Return Value:
Nothing

Examples

Example 1:
_control ctrlSetEventHandler ["KeyDown", ""]
Example 2:
(_display displayCtrl 108) ctrlSetEventHandler ["LBSelChanged", "[""ListChange"", 
_this] call FireEvents]";

Additional Information

See also:
displaySetEventHandler

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

There is a listing of User Interface Event Handlers that will work with ctrlSetEventHandler, but when combining those UI event handlers you must drop the On part.
Bad Example: _control ctrlSetEventHandler ["OnLBSelChanged", ""]
Good Example: _control ctrlSetEventHandler ["LBSelChanged", ""]

Bottom Section