![]() |



Function |
Declared in: NiGraph3DEvents.h |
Declaration
void OnKeyPress( short FAR* KeyAscii);
Description
Generated when a KeyDown message generates a key while a control is active.
Parameters
short FAR* KeyAscii
The ASCII value of the key that the user pressed.
See Also
Example
void OnKeyPress(short FAR* KeyAscii) { if (KeyASCII == 83) { // Your event code here. } }