Home > @i2analyze/notebook-sdk > commands > IHomeTabActionArea
commands.IHomeTabActionArea interface
An area that represents the Home tab in the application ribbon, which contains system groups.
Signature:
interface IHomeTabActionArea extends IActionArea<IHomeTabSystemGroups>
Extends: IActionArea<IHomeTabSystemGroups>
Introduced: version 1.6
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
systemGroups | readonly |
TSystemGroups | Gets the system groups for the action area, which you can use to specify relative locations for your actions and groups. (Inherited from IActionArea) |
Methods
Method | Description |
---|---|
addGroup(group) | Adds the specified group of actions to the user interface. (Inherited from IActionArea) |
addOrGetGroup(group) | Adds the specified group of actions to the user interface, or gets an existing group with the same identifier. (Inherited from IActionArea) |
after(id) | Locates the area of the user interface that appears immediately after a particular action or group of actions. (Inherited from IActionArea) |
after(command) | Locates the area of the user interface that appears immediately after the action that represents the specified command. (Inherited from IActionArea) |
before(id) | Locates the area of the user interface that appears immediately before a particular action or group of actions. (Inherited from IActionArea) |
before(command) | Locates the area of the user interface that appears immediately before the action that represents the specified command. (Inherited from IActionArea) |
getGroup(id) | Locates the area of the user interface that is occupied by a particular group of actions. (Inherited from IActionArea) |
remove(id) | Removes an action or group of actions from the user interface. (Inherited from IActionArea) |
surfaceCommands(commandsOrCommandIds) | Adds actions for the specified registered commands to the user interface. (Inherited from IActionArea) |