The font family name, e.g., 'Times'.
(self)
| 467 | |
| 468 | @property |
| 469 | def family_name(self) -> str: # For consistency with FT2Font. |
| 470 | """The font family name, e.g., 'Times'.""" |
| 471 | return self.get_familyname() |
| 472 | |
| 473 | def get_weight(self) -> str: |
| 474 | """Return the font weight, e.g., 'Bold' or 'Roman'.""" |
nothing calls this directly
no test coverage detected