Given the name of a tk named font, returns a Font representation.
(name, root=None)
| 18 | |
| 19 | |
| 20 | def nametofont(name, root=None): |
| 21 | """Given the name of a tk named font, returns a Font representation. |
| 22 | """ |
| 23 | return Font(name=name, exists=True, root=root) |
| 24 | |
| 25 | |
| 26 | class Font: |