'Declaration
Public Event KeyDown As EventHandler(Of UIKeyCommand)
'Usage
Dim instance As C1TextField Dim handler As EventHandler(Of UIKeyCommand) AddHandler instance.KeyDown, handler
public event EventHandler<UIKeyCommand> KeyDown
Event Data
The event handler receives an argument of type UIKit.UIKeyCommand containing data related to this event. The following UIKeyCommand properties provide information specific to this event.
Property | Description |
---|---|
ClassHandle | |
DownArrow | |
Escape | |
Handle | (Inherited from Foundation.NSObject) |
LeftArrow | |
RightArrow | |
SuperHandle | (Inherited from Foundation.NSObject) |
UpArrow |
See Also