FootnoteDefinitionBlock

FootnoteDefinitionBlock

Overview

FootnoteDefinitionBlock is a class in Aspose.Words FOSS for Python. Inherits from: Block.

This class provides 4 methods for working with FootnoteDefinitionBlock objects in Python programs. Available methods include: __init__, add_child, get_parent. All public members are accessible to any Python application after installing the Aspose.Words FOSS for Python package. Properties: block_level, children, is_first_child, is_last_child, label, next_sibling, and 3 more.

Properties

NameTypeAccessDescription
label``ReadGets the label.
is_first_childboolReadGets the is first child.
is_last_childboolReadGets the is last child.
next_siblingOptional["Block"]ReadGets the next sibling.
previous_siblingOptional["Block"]ReadGets the previous sibling.
block_levelMarkdownBlockLevelReadGets the block level.
type``ReadGets the type.
parentOptional["Block"]ReadGets the parent.
childrenlist["Block"]ReadGets the children.

Methods

SignatureDescription
__init__(label: str)Calls init(label) on this FootnoteDefinitionBlock instance.
__init__(block_type: BlockType)Calls init(block_type) on this FootnoteDefinitionBlock instance.
add_child(child: "Block")"Block"Calls add_child(child) on this FootnoteDefinitionBlock instance.
get_parent()Optional["Block"]Walk up the ancestor chain and return the first block whose
    ``type`` is one of *types*, or ``None`` if none matches. |

See Also