Parameters
- sender
- The source of the event.
- key
- Control Key.
Return Value
A boolean value that determines whether the event is cancelled.
If set to false (the default), the event is cancelled and the key is not sent to the host.
If set to true, the key is sent to the host.
The value of parameter key is the control key that is about to be sent. In the event handler function you may change the control key value before it is sent to the host. The event can also be canceled by setting the return value of the event handler function to false. The return value false is the default if your event handler does not explicitly set it. If you cancel the event, the control key will not be sent to the host. By setting the function return value to true, the event continues with the control key value in the parameter key, which could be a different control key value set by the event handler.
For more about using the BeforeSendControlKey event, see:
This sample captures the screen before the control key is sent and appends it to a text file.