OneNote.Interfaces.SectionGroupLoadOptions interface
Represents a OneNote section group. Section groups can contain sections and other section groups.
Remarks
Properties
$all | Specifying |
client |
The client url of the section group. Read only |
id | Gets the ID of the section group. Read-only. |
name | Gets the name of the section group. Read-only. |
notebook | Gets the notebook that contains the section group. |
parent |
Gets the section group that contains the section group. Throws ItemNotFound if the section group is a direct child of the notebook. |
parent |
Gets the section group that contains the section group. Returns null if the section group is a direct child of the notebook. |
section |
The collection of section groups in the section group. Read only |
sections | The collection of sections in the section group. Read only |
Property Details
$all
Specifying $all
for the LoadOptions loads all the scalar properties (e.g.: Range.address
) but not the navigational properties (e.g.: Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
clientUrl
The client url of the section group. Read only
clientUrl?: boolean;
Property Value
boolean
Remarks
id
Gets the ID of the section group. Read-only.
id?: boolean;
Property Value
boolean
Remarks
name
Gets the name of the section group. Read-only.
name?: boolean;
Property Value
boolean
Remarks
notebook
Gets the notebook that contains the section group.
notebook?: OneNote.Interfaces.NotebookLoadOptions;
Property Value
Remarks
parentSectionGroup
Gets the section group that contains the section group. Throws ItemNotFound if the section group is a direct child of the notebook.
parentSectionGroup?: OneNote.Interfaces.SectionGroupLoadOptions;
Property Value
Remarks
parentSectionGroupOrNull
Gets the section group that contains the section group. Returns null if the section group is a direct child of the notebook.
parentSectionGroupOrNull?: OneNote.Interfaces.SectionGroupLoadOptions;
Property Value
Remarks
sectionGroups
The collection of section groups in the section group. Read only
sectionGroups?: OneNote.Interfaces.SectionGroupCollectionLoadOptions;
Property Value
Remarks
sections
The collection of sections in the section group. Read only
sections?: OneNote.Interfaces.SectionCollectionLoadOptions;
Property Value
Remarks
Office Add-ins