(self, style=None)
| 956 | font = property(_get_font, _set_font) |
| 957 | |
| 958 | def getFont(self, style=None): |
| 959 | if not style: |
| 960 | style = self.style |
| 961 | fontName = style.get('font', DEFAULT_FONT) |
| 962 | if fontName is None: |
| 963 | fontName = DEFAULT_FONT |
| 964 | return findFont(fontName) |
| 965 | |
| 966 | def _get_fontSize(self): |
| 967 | """Answers the fontSize that is defined in the current style. |
no test coverage detected