Admin Production rocket
Current Publication

ControlKeySendingEventHandler

Reflection Desktop .NET API Guide V18.0
Rocket® Reflection Desktop (formerly a product of Micro Focus or formerly a product of Open Text) documentation that was created prior to Rocket Software's acquisition of certain products from OpenText may contain outdated references to "Micro Focus” or “OpenText”, which are trademarks of OpenText. Rocket Software is not affiliated with Micro Focus or OpenText and has rebranded these products as Rocket® products.
The event sender.
The event argument.
ControlKeySendingEventHandler Delegate
In This Topic
Handles the SendingControlKey event to permit users to modify a control key value or cancel a send control key action before it is sent.
Syntax

                     
                     
'Declaration
 

                     
                     
Public Delegate Sub ControlKeySendingEventHandler( _
   ByVal sender As Object, _
   ByVal e As ControlKeySendingEventArgs _
) 

                  

                     
                     
'Usage
 

                     
                     
Dim instance As New ControlKeySendingEventHandler(AddressOf HandlerMethod)

                  

                     
                     
public delegate void ControlKeySendingEventHandler( 
   object sender,
   ControlKeySendingEventArgs e
)

                  

Parameters

sender
The event sender.
e
The event argument.
Remarks
To cancel the action, set the Cancel property of the SendingControlKeyEventArgs object passed to the event handler to true.
See Also