Unconditionally replace or add `sectPr` as grandchild in correct sequence.
(self, sectPr: CT_SectPr)
| 71 | ) |
| 72 | |
| 73 | def set_sectPr(self, sectPr: CT_SectPr): |
| 74 | """Unconditionally replace or add `sectPr` as grandchild in correct sequence.""" |
| 75 | pPr = self.get_or_add_pPr() |
| 76 | pPr._remove_sectPr() |
| 77 | pPr._insert_sectPr(sectPr) |
| 78 | |
| 79 | @property |
| 80 | def style(self) -> str | None: |