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 | |
_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 |
{}
|
Source code in odfdo/presentation_notes.py
44 45 46 47 48 49 50 51 52 53 54 55 56 | |