function Add(const aKey : TApxKeyString;
const aValue : TApxKeyString) : Boolean;
TApxKeyString = string[63];
Adds a new keyboard mapping to the instance.
The aKey string is the lookup value (the key string) and aValue is the string associated with it. Add does not validate these two strings to be in any particular format, so it is possible to fill the instance with nonsensical strings that would never be looked up.
If the key string and its value were successfully added, Add returns True. If the key string is already present, Add will return False and leave the existing mapping as is.
Please see LoadFromFile in the printed documentation for a discussion on how to define the key strings and their values.
See also: LoadFromFile