Method
set_rPr_font
(
rPr: CT_TextCharacterProperties, name: str, size: int, bold: bool, italic: bool
)
Source from the content-addressed store, hash-verified
| 267 | yield p.get_or_add_endParaRPr() |
| 268 | |
| 269 | def set_rPr_font( |
| 270 | rPr: CT_TextCharacterProperties, name: str, size: int, bold: bool, italic: bool |
| 271 | ): |
| 272 | f = Font(rPr) |
| 273 | f.name, f.size, f.bold, f.italic = family, Pt(size), bold, italic |
| 274 | |
| 275 | txBody = self._element |
| 276 | for rPr in iter_rPrs(txBody): |
Callers
nothing calls this directly
Tested by
no test coverage detected