CommandManager.uninstallKey Member
Internal. Uninstalls the accelerator key for a single command.
Syntax
object.uninstallKey(command);
Arguments
Argument | Summary |
---|---|
command | The CommandRecord to uninstall. |
Returns
Remarks
See Also
Source Code
function cmgr_uninstkey(command)
{
for (var i in command.keyNodes)
{
try
{
/* document may no longer exist in a useful state. */
command.keyNodes[i].parentNode.removeChild(command.keyNodes[i]);
}
catch (ex)
{
dd ("*** caught exception uninstalling key node: " + ex);
}
}
}