Method: Wui::Window#setPos

Defined in:
lib/wui.rb

#setPos(x, y) ⇒ Object



26
27
28
29
30
# File 'lib/wui.rb', line 26

def setPos(x, y)
  checkHWND
  Wui.SetWindowPos(@hWnd, 0, x, y, 0, 0, 1) # SWP_NOSIZE
  self
end