InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / BeforeSendKeysEventArgs Class / BeforeSendKeysEventArgs Constructor
The key.
The key row position.
The key column position.
Cancel to send the key.


In This Topic
    BeforeSendKeysEventArgs Constructor
    In This Topic
    Constructs a BeforeSendKeysEventArgs object.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal keys As String, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal cancel As Boolean _
    )
    'Usage
     
    
    Dim keys As String
    Dim row As Integer
    Dim column As Integer
    Dim cancel As Boolean
     
    Dim instance As New BeforeSendKeysEventArgs(keys, row, column, cancel)
    public BeforeSendKeysEventArgs( 
       string keys,
       int row,
       int column,
       bool cancel
    )

    Parameters

    keys
    The key.
    row
    The key row position.
    column
    The key column position.
    cancel
    Cancel to send the key.
    See Also