(font: dict)
| 37 | |
| 38 | |
| 39 | def get_font_pptcstyle(font: dict): |
| 40 | font = SimpleNamespace(**font) |
| 41 | return f"Font Style: bold={font.bold}, italic={font.italic}, underline={font.underline}, size={font.size}pt, color={font.color}, font style={font.name}\n" |
| 42 | |
| 43 | |
| 44 | def get_font_style(font: dict): |