Skip to content

Presentation Notes

Note class for “presentation:notes” tag.

Classes:

Name Description
PresentationNotes

The “presentation:notes” element defines a notes page.

PresentationNotes

Bases: OfficeFormsMixin, Element

The “presentation:notes” element defines a notes page.

(Minimal implementation).

A notes page contains a preview of a drawing page and additional graphic shapes.

The “presentation:notes” element is usable within the following elements: “draw:page” and “style:master-page”.

Methods:

Name Description
__init__

Initialize a PresentationNotes element.

Source code in odfdo/presentation_notes.py
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
class PresentationNotes(OfficeFormsMixin, Element):
    """The "presentation:notes" element defines a notes page.

    (Minimal implementation).

    A notes page contains a preview of a drawing page and additional graphic
    shapes.

    The "presentation:notes" element is usable within the following elements:
    "draw:page" and "style:master-page".
    """

    _tag = "presentation:notes"

    def __init__(
        self,
        **kwargs: Any,
    ) -> None:
        """Initialize a PresentationNotes element.

        The `presentation:notes` element defines a notes page, typically
        containing a preview of a drawing page and additional graphic shapes.

        Args:
            **kwargs: Additional keyword arguments for the parent `Element` class.
        """
        super().__init__(**kwargs)

_tag class-attribute instance-attribute

_tag = 'presentation:notes'

__init__

__init__(**kwargs: Any) -> None

Initialize a PresentationNotes element.

The presentation:notes element defines a notes page, typically containing a preview of a drawing page and additional graphic shapes.

Parameters:

Name Type Description Default
**kwargs Any

Additional keyword arguments for the parent Element class.

{}
Source code in odfdo/presentation_notes.py
44
45
46
47
48
49
50
51
52
53
54
55
56
def __init__(
    self,
    **kwargs: Any,
) -> None:
    """Initialize a PresentationNotes element.

    The `presentation:notes` element defines a notes page, typically
    containing a preview of a drawing page and additional graphic shapes.

    Args:
        **kwargs: Additional keyword arguments for the parent `Element` class.
    """
    super().__init__(**kwargs)