Method: AutoIt::Control#control_focus

Defined in:
lib/autoit/control.rb

#control_focus(title, text, control) ⇒ Object

Sets input focus to a given control on a window. @param: title: The title of the window to access. @param: text: The text of the window to access. @param: control: The control to interact with.



95
96
97
# File 'lib/autoit/control.rb', line 95

def control_focus(title, text, control)
  command 'ControlFocus', [title, text, control]
end