SetX sets the x coordinate of the *WindowBase, relative to the screen for RootWidgets like *MainWindow or *Dialog and relative to the parent for child Windows.
(value int)
| 1704 | // RootWidgets like *MainWindow or *Dialog and relative to the parent for |
| 1705 | // child Windows. |
| 1706 | func (wb *WindowBase) SetX(value int) error { |
| 1707 | return wb.SetXPixels(wb.IntFrom96DPI(value)) |
| 1708 | } |
| 1709 | |
| 1710 | // SetXPixels sets the x coordinate of the *WindowBase, relative to the screen for |
| 1711 | // RootWidgets like *MainWindow or *Dialog and relative to the parent for |
nothing calls this directly
no test coverage detected