(self, fontSize)
| 981 | """ |
| 982 | return units(self.style.get('fontSize', DEFAULT_FONT_SIZE)) |
| 983 | def _set_fontSize(self, fontSize): |
| 984 | # Set the fontSize in the current style |
| 985 | self.style['fontSize'] = units(fontSize) |
| 986 | self.reset() # Make sure context cache recalculates. |
| 987 | fontSize = property(_get_fontSize, _set_fontSize) |
| 988 | |
| 989 | def _get_leading(self): |