ctrlSetEventHandler

From Bohemia Interactive Community
Revision as of 23:21, 21 August 2007 by Hoz (talk | contribs) (added second example. updated note to try and make clearer dropping the On)
Jump to navigation Jump to search
-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: Control
[handler name, function]: Array
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