Printing Functions 3-27
ShiftMode
Description
Allows the application to determine the current shift mode of the keypad
and also to set the shift mode.
public eKSM_LEVEL ShiftMode
Parameters
KSM_NORMAL
Normal Mode -Numeric (unshifted)
KSM_FUNCTION
Function Mode (F1-F10)
KSM_LOWERALPHA
Lower-case Alpha Mode
KSM_UPPERALPHA
Upper-case Alpha Mode
Return Values
KSM_NORMAL
Normal Mode -Numeric (unshifted)
KSM_FUNCTION
Function Mode (F1-F10)
KSM_LOWERALPHA
Lower-case Alpha Mode
KSM_UPPERALPHA
Upper-case Alpha Mode
Example C#
using Ultra;
{
Ultra.Keypad rKeypad = new Keypad(); //Instantiate Class
rKeypad.ShitfMode = Ultra.Keypad.eKSMLEVEL.KSM_NORMAL;
// Force Keypad to numbers
}
Example VB.NET
Imports Ultra
Dim rKeypad As New Ultra.Keypad
' Instantiate class
rKeypad.ShiftMode = rKeypad.eKSM_LEVEL.KSM_NORMAL
' Force Keypad to numbers