SetHeight sets the outer height of the *WindowBase, including decorations.
(value int)
| 1783 | |
| 1784 | // SetHeight sets the outer height of the *WindowBase, including decorations. |
| 1785 | func (wb *WindowBase) SetHeight(value int) error { |
| 1786 | return wb.SetHeightPixels(wb.IntFrom96DPI(value)) |
| 1787 | } |
| 1788 | |
| 1789 | // SetHeightPixels sets the outer height of the *WindowBase, including decorations. |
| 1790 | func (wb *WindowBase) SetHeightPixels(value int) error { |
nothing calls this directly
no test coverage detected