Return a list of individual font family names or generic family names. The font families or generic font families (which will be resolved from their respective rcParams when searching for a matching font) in the order of preference.
(self)
| 868 | return self.get_fontconfig_pattern() |
| 869 | |
| 870 | def get_family(self): |
| 871 | """ |
| 872 | Return a list of individual font family names or generic family names. |
| 873 | |
| 874 | The font families or generic font families (which will be resolved |
| 875 | from their respective rcParams when searching for a matching font) in |
| 876 | the order of preference. |
| 877 | """ |
| 878 | return list(self._family) |
| 879 | |
| 880 | def get_name(self): |
| 881 | """ |
no outgoing calls
no test coverage detected