Return the name of the font that best matches the font properties.
(self)
| 878 | return list(self._family) |
| 879 | |
| 880 | def get_name(self): |
| 881 | """ |
| 882 | Return the name of the font that best matches the font properties. |
| 883 | """ |
| 884 | return get_font(findfont(self)).family_name |
| 885 | |
| 886 | def get_style(self): |
| 887 | """ |
no test coverage detected