Method: AutoItX3::ListBox#select_string

Defined in:
lib/AutoItX3/control.rb

#select_string(str) ⇒ Object

Sets self‘s selection to the first occurence of str. Raises an Au3Error if str cannot be found.



246
247
248
249
# File 'lib/AutoItX3/control.rb', line 246

def select_string(str)
  send_command_to_control("SelectString", str)
  string
end