Occurs when a combination of keys in the mapping table is pressed.
Visual Basic Syntax
TNBAidHook_OnAidKey (ByVal Value As String)
Delphi Syntax
TNBAidHook.OnAidKey (Sender: TObject);
Remarks
Value parameter can be one of the following strings:
Local processing function keys:
Value
|
Meaning
|
Up
|
go to previous row
|
Down
|
go to next row
|
Left
|
go to previous column
|
Right
|
go to next column
|
Insert
|
set the keyboard in inserting state
|
Delete
|
delete the next character
|
BackSpace
|
delete the previous character
|
ScreenBegin
|
go to row 1 column 1
|
ScreenEnd
|
go to last row last column
|
NextLine
|
go to column 1 of the next line
|
PriorField
|
go to the previous field
|
NextField
|
go to the next field
|
Home
|
go to the first field
|
End
|
go to last character of current field
|
EraseField
|
erase the current field
|
EraseEof
|
erase characters from current position until the end of field
|
FieldMinus
|
skip to the previous field
|
FieldPlus
|
skip to the next field
|
Restore
|
restore the current screen
|
Host processing function keys (Attention Identifier "AID" keys):
Value
|
Meaning
|
Enter
|
ENTER key
|
Clear
|
CLEAR key
|
ATTN
|
Attention key
|
SysReq
|
System Request key
|
PF1
|
PF01 key
|
PF2
|
PF02 key
|
PF3
|
PF03 key
|
PF4
|
PF04 key
|
PF5
|
PF05 key
|
PF6
|
PF06 key
|
PF7
|
PF07 key
|
PF8
|
PF08 key
|
PF9
|
PF09 key
|
PF10
|
PF10 key
|
PF11
|
PF11 key
|
PF12
|
PF12 key
|
PF13
|
PF13 key
|
PF14
|
PF14 key
|
PF15
|
PF15 key
|
PF16
|
PF16 key
|
PF17
|
PF17 key
|
PF18
|
PF18 key
|
PF19
|
PF19 key
|
PF20
|
PF20 key
|
PF21
|
PF21 key
|
PF22
|
PF22 key
|
PF23
|
PF23 key
|
PF24
|
PF24 key
|
PA1
|
PA1 key
|
See Also AIDKey property, AidKeyPressed, LocalKeyPressed, SendKeys and SendAid method.
|