Table of Contents

Interface INotebookOrSectionGroup

Namespace
LinqToOneNote.Abstractions
Assembly
LinqToOneNote.dll

Represents a OneNote hierarchy item that can have sections and/or section groups as children, i.e. a notebook or a section group.

public interface INotebookOrSectionGroup : IOneNoteItem, INavigable
Inherited Members
Extension Methods

Properties

SectionGroups

The section groups that this item contains (direct children only).

IReadOnlyList<SectionGroup> SectionGroups { get; }

Property Value

IReadOnlyList<SectionGroup>

Sections

The sections that this item contains (direct children only).

IReadOnlyList<Section> Sections { get; }

Property Value

IReadOnlyList<Section>

See Also