Admin Production rocket
Current Publication

BeforeSendControlKeyEventHandler

Reflection Desktop .NET API Guide V17.1
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.
event sender.
BeforeSendControlKey event argument.
BeforeSendControlKeyEventHandler Delegate
In This Topic
Handles the BeforeSendControlKey event to permit users to modify a control key value or cancel a send control key action before it is sent.

To cancel the action, set the Cancel property of the BeforeSendControlKeyEventArgs object passed to the event handler to true.

Syntax

                     
                     
'Declaration
 

                     
                     
Public Delegate Sub BeforeSendControlKeyEventHandler( _
   ByVal sender As Object, _
   ByVal args As BeforeSendControlKeyEventArgs _
) 

                  

                     
                     
'Usage
 

                     
                     
Dim instance As New BeforeSendControlKeyEventHandler(AddressOf HandlerMethod)

                  

                     
                     
public delegate void BeforeSendControlKeyEventHandler( 
   object sender,
   BeforeSendControlKeyEventArgs args
)

                  

Parameters

sender
event sender.
args
BeforeSendControlKey event argument.
See Also