3-24 Programmer’s Manual
LockCfgMenu
Description
Allows the application to control access to all configuration menus for the
printer and scanner.
Syntax
public void LockCfgMenu(bool fLock)
Parameters
fLock
TRUE to lock the menu.
FALSE to release the lock on the menu.
Return Values
None
Example C#
using Ultra;
{
Ultra.Keypad rKeypad = new Keypad(); //Instantiate class
rKeypad.LockCfgMenu(true); //Lock Config Menu
}
Example VB.NET
Imports Ultra
Dim rKeypad As New Keypad ' Instantiate class
rKeypad.LockCfgMenu(True) ' Lock Config Menu