CommandManager.uninstallKeys Member

Internal. Uninstalls accelerator keys for commands from a document.

Syntax

object.uninstallKeys(commands);

Arguments

ArgumentSummary
commands Optional. An Array or Object continaing CommandRecord objects. If not specified, all commands in the CommandManager are uninstalled.

Returns

Remarks

See Also

Source Code

function cmgr_uninstkeys(commands)
{
if (!commands)
commands = this.commands;
for (var c in commands)
this.uninstallKey (commands[c]);
}