KEYS section
The KEYS
section can be used to define default key labels for the
current form.
Syntax
Important:
This feature is supported for backward compatibility. Consider using action attributes to define accelerator keys and decorate actions.
KEYS
key-name = [
%]
"label"
[...]
[
END]
- key-name is the name of a key (like
F10
,Control-z
). - label is the text to be displayed in the button corresponding to the key.
Usage
The KEYS
section can be used to define default key labels at the form level.
The KEYS
section must appear in the sequence described
in form file structure.
The KEYS
section is optional in a form definition.
The END
keyword is optional.
Example
KEYS
F10 = "City list"
F11 = "State list"
F15 = "Validate"
END