IAddSectionOptions | @jupyterlab (original) (raw)
Interface IAddSectionOptions
The options used to add a section to the notebook tools.
interface IAddSectionOptions {
label?: string;
rank?: number;
sectionName: string;
tool?: ITool;
}
Index
Properties
label? rank? sectionName tool?
Properties
Optional
label
label?: string
The label of the new section.
Optional
rank
rank?: number
The rank order of the section among its siblings.
sectionName
sectionName: string
The name of the new section.
Optional
tool
tool?: ITool
The tool to add to the notebook tools area.