how to get font metrics
I have the following Tcl code in one of my projects:
```tcl
const LINEHEIGHT [font metrics font -linespace]
ttk::style configure Treeview -rowheight $::LINEHEIGHT
```
I need this because on my laptop the ttk:treeview rowheight is too small and results in overlapping rows.
But I can't see how to get the line height font metric in Go/Tk.
issue