Title

Overview

Title is a class in Aspose.Note FOSS for Python. Inherits from: Node.

Title.TitleText holds the RichText representing the title’s main text, or None if absent.

This class provides 3 methods for working with Title objects in Python programs. Available methods include: GetChildNodes, GetEnumerator, __init__. All exported members are accessible to any Python application after installing the Aspose.Note FOSS for Python package. Properties: TitleDate, TitleText, TitleTime.

Properties

NameTypeAccessDescription
TitleTextRichText | NoneReadGets the title text.
TitleDateRichText | NoneReadGets the title date.
TitleTimeRichText | NoneReadGets the title time.

Methods

SignatureDescription
__init__(TitleText: RichText | None, TitleDate: RichText | None, TitleTime: RichText | None)
GetEnumerator()Iterator[Node]Returns an iterator over the child Node objects of the Title
GetChildNodes(node_type: type[TNode])list[TNode]Returns a list of child nodes filtered by the specified node type

See Also