Paper Office
paper-pptxAPI referenceoxml.table

CT_TableRow

paper-pptx 0.2.0 API reference

a:tr custom element class.

Attributes

h

attributehLength
= RequiredAttribute('h', ST_Coordinate)

row_idx

attributerow_idxint

Offset of this row in its table.

tc

attributetc
= ZeroOrMore('a:tc', successors=('a:extLst',))

tc_lst

attributetc_lstlist[CT_TableCell]

xml

attributexmlstr

XML string for this element, suitable for testing purposes.

Pretty printed for readability and without an XML declaration at the top.

Functions

add_tc

funcadd_tc() -> CT_TableCell

A newly added minimal valid a:tc child element.

Returns

pptx.oxml.table.CT_TableCell

first_child_found_in

funcfirst_child_found_in(*tagnames: str) -> _Element | None

First child with tag in tagnames, or None if not found.

paramtagnamesstr
= ()

Returns

lxml.etree._Element | None

insert_element_before

funcinsert_element_before(elm: ElementBase, *tagnames: str)
paramelmElementBase
paramtagnamesstr
= ()

insert_tc_at

funcinsert_tc_at(idx: int) -> CT_TableCell

Return a new minimal a:tc inserted so it becomes the cell at idx.

paper-pptx addition. Insertion is relative to the existing a:tc siblings, so a trailing a:extLst (if any) stays last per the schema's child sequence.

paramidxint

Returns

pptx.oxml.table.CT_TableCell

remove_all

funcremove_all(*tagnames: str) -> None

Remove child elements with tagname (e.g. "a:p") in tagnames.

paramtagnamesstr
= ()

Returns

None

xpath

funcxpath(xpath_str: str) -> Any

Override of lxml _Element.xpath() method.

Provides standard Open XML namespace mapping (nsmap) in centralized location.

paramxpath_strstr

Returns

typing.Any

On this page