"hotKeyItemId"
Sets a hotkey for an item of a cascade.
Synopsis
shape.hotKeyItemId(string item, string hotkey);
Parameters
Parameter | Description |
---|---|
shape | Name of the object |
itemID | The item ID, for example, "3" |
hotkey | The hotkey that is set for the specified item, for example, "Ctrl+H" |
Description
Sets a hotkey for an item of a cascade.
Example
In the following example, the hotkey Ctrl+H will be set for the item with the ID number 3 .
main()
{
string hkItem = "3";
string hKey = "Ctrl+H";
this.hotKeyItemId(hkItem, hKey);
}
Assignment
Cascade