The options used to add an item to the notebook tools.

interface IAddOptions {
    rank?: number;
    section: string;
    tool: ITool;
}

Properties

Properties

rank?: number

The rank order of the widget among its siblings.

section: string

The section to which the tool should be added.

tool: ITool

The tool to add to the notebook tools area.