Panel - Enter Event

Fired when the Enter key is pressed

Member of Panel (PRIM_PANL)

Parameters

NameTypeData TypeDescription
KeyCode*InputEnumerationThe key that was pressed
Char*BothUnicode StringCharacter that was pressed
IsAltDown*InputBooleanIs the Alt key down?
IsControlDown*InputBooleanIs the Ctrl key down?
IsShiftDown*InputBooleanIs the Shift key down?
Handled*BothBooleanSet to true to stop the event being propagated to the parent control

Details

The Enter event is fired when the Enter key is pressed and the control has focus.
 
This is a simpler mechanism that using a KeyPress event or a default push button.

Example

Using the Enter event.
Evtroutine Handling(#Panel.Enter)
 
   * User processing here
 
Endroutine

See also

All Component Classes

Technical Reference

Febuary 18 V14SP2