LogicalNode

Overview

LogicalNode is a class in Aspose.Note for Python.

LogicalNode.kind represents the type identifier of the logical node.

LogicalNode represents a logical element in the OneNote document model. It serves as an intermediate base class in the Aspose.Note class hierarchy, sitting between the storage-level Node and the higher-level CompositeNode. Logical nodes carry the mapping between the on-disk binary representation and the accessible Python object model.

Properties

NameTypeAccessDescription
kindstrReadRepresents the type identifier of the logical node
oidAnyReadHolds the object identifier associated with the node
propertiesdict[str, Any]ReadIs a dictionary of custom attributes for the node
childrenlist[LogicalNode]ReadIs a list of child LogicalNode objects
metadatalist[LogicalNode]ReadIs a list of LogicalNode objects containing metadata

See Also