OneStoreObject

Overview

OneStoreObject is a class in Aspose.Note for Python.

OneStoreObject.oid represents the object’s unique identifier as an ExtendedGUID.

OneStoreObject represents a single object in the OneNote object-space model. Objects are the atomic data units stored in the OneStore binary format; each has a JCID (Java Class ID) that identifies its type, and a set of property values. This class is part of the low-level binary-access API and is primarily useful for diagnostic inspection of raw OneNote file structures.

Properties

NameTypeAccessDescription
oidExtendedGUIDReadRepresents the object’s unique identifier as an ExtendedGUID
jcidJCIDReadRepresents the object’s JCID (type identifier) value
jcid_namestrReadRepresents the human‑readable name of the JCID
propertiesdict[str, Any]ReadRepresents a dictionary of parsed property names to their values
raw_propertieslist[tuple[str, Any]]ReadRepresents the raw list of (property name, value) tuples as read from the file
file_data_referencestr | NoneReadRepresents an optional reference string to external file data
file_extensionstr | NoneReadRepresents an optional file extension string for attached file data

See Also