1. NAME

IsCursorKey, IsFunctionKey, IsKeypadKey, IsMiscFunctionKey, IsModifierKey, IsPFKey, IsPrivateKeypadKey - keysym classification macros

2. SYNTAX

int IsCursorKey(KeySym keysym);

int IsFunctionKey(KeySym keysym);

int IsKeypadKey(KeySym keysym);

int IsMiscFunctionKey(KeySym keysym);

int IsModifierKey(KeySym keysym);

int IsPFKey(KeySym keysym);

int IsPrivateKeypadKey(KeySym keysym);

3. ARGUMENTS

keysym 1i Specifies the KeySym that is to be \*(Fn.

4. DESCRIPTION

The .ZN IsCursorKey macro returns .ZN True if the specified KeySym is a cursor key.

The .ZN IsFunctionKey macro returns .ZN True if the KeySym is a function key.

The .ZN IsKeypadKey macro returns .ZN True if the specified KeySym is a keypad key.

The .ZN IsMiscFunctionKey macro returns .ZN True if the specified KeySym is a miscellaneous function key.

The .ZN IsModifierKey macro returns .ZN True if the specified KeySym is a modifier key.

The .ZN IsPFKey macro returns .ZN True if the specified KeySym is a PF key.

The .ZN IsPrivateKeypadKey macro returns .ZN True if the specified KeySym is a vendor-private keypad key.

5. SEE ALSO