LoadedOneNoteDocument

LoadedOneNoteDocument

Overview

LoadedOneNoteDocument is a class in Aspose.Note for Python.

LoadedOneNoteDocument.display_name returns the document’s display name or None if unavailable.

LoadedOneNoteDocument is an internal representation of a fully parsed OneNote document as read from the binary OneStore file format. It holds the raw object-space graph and revision manifests that the higher-level Document class builds its public document model from. In most scripts, work with the Document class directly; LoadedOneNoteDocument is exposed for advanced use cases requiring direct access to the binary layer.

Properties

NameTypeAccessDescription
display_namestr | NoneReadReturns the document’s display name or None if unavailable
logical_documentLogicalDocumentReadProvides the underlying LogicalDocument representing the file structure
pageslist[Page]ReadIs a list of Page objects representing the document’s top‑level pages
page_historieslist[list[Page]]ReadContains a list of page version histories, each as a list of Page objects

See Also