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
| Name | Type | Access | Description |
|---|---|---|---|
display_name | str | None | Read | Returns the document’s display name or None if unavailable |
logical_document | LogicalDocument | Read | Provides the underlying LogicalDocument representing the file structure |
pages | list[Page] | Read | Is a list of Page objects representing the document’s top‑level pages |
page_histories | list[list[Page]] | Read | Contains a list of page version histories, each as a list of Page objects |