OnKeyDown

OnKeyDown

Occurs when a key is pressed and the focus is inside the textbox

Event Arguments:
form: pf.Form
args: pf.IKeyDownEventArgs

where pf.IKeyDownEventArgs:
export interface IKeyDownEventArgs {
Sender: any;
KeyCode: number;
ShiftKey: boolean;
ControlKey: bololean;}

Returns:
any