The options used to add a section to the notebook tools.

interface IAddSectionOptions {
    label?: string;
    rank?: number;
    sectionName: string;
    tool?: ITool;
}

Properties

label?: string

The label of the new section.

rank?: number

The rank order of the section among its siblings.

sectionName: string

The name of the new section.

tool?: ITool

The tool to add to the notebook tools area.