![Argox PT-80 Programming Manual Download Page 19](http://html.mh-extra.com/html/argox/pt-80/pt-80_programming-manual_2969278019.webp)
GetKeypadAlphaMode
This function will get the current input mode.
DWORD GetKeypadAlphaMode
{
}
Parameters
None.
Return Values
The return value can be one of the values in the following table.
Return value
Alpha mode
0 numeric
mode
1
lowercase letter mode
2 uppercase
lette
mode
Example
DWORD dwResult;
dwResult
=
GetKeypadAlphaMode();
switch
(dwResult){
case
0:
AfxMessageBox(_T("Numeric
mode"));
break;
case
1:
AfxMessageBox(_T("Lowercase letter mode"));
break;
case
2:
AfxMessageBox(_T("Uppercase letter mode"));
break;
}
Requirements
OS Versions:
Windows CE 4.2 and later.
Header:
sysapiax.h
Link Library:
sysapiax.lib
Link DLL:
sysapiax.dll
Device:
PT80
Programming Manual
16