SetY sets the y coordinate of the *WindowBase, relative to the screen for RootWidgets like *MainWindow or *Dialog and relative to the parent for child Windows.
(value int)
| 1735 | // RootWidgets like *MainWindow or *Dialog and relative to the parent for |
| 1736 | // child Windows. |
| 1737 | func (wb *WindowBase) SetY(value int) error { |
| 1738 | return wb.SetYPixels(wb.IntFrom96DPI(value)) |
| 1739 | } |
| 1740 | |
| 1741 | // SetYPixels sets the y coordinate of the *WindowBase, relative to the screen for |
| 1742 | // RootWidgets like *MainWindow or *Dialog and relative to the parent for |
nothing calls this directly
no test coverage detected