Keystroke Constructor(Keys,Keys)
In This Topic
Creates a new keystroke with a specified a key code and modifier keys.
Syntax
'Declaration
Public Function New( _
ByVal As Keys, _
ByVal As Keys _
)
'Usage
Dim keyCode As Keys
Dim modifiers As Keys
Dim instance As New Keystroke(keyCode, modifiers)
public Keystroke(
Keys ,
Keys
)
Parameters
- keyCode
- Key code defined by this keystroke
- modifiers
- Modifier keys defined by this keystroke
See Also