Method: AutoItX3::TreeView#select
- Defined in:
- lib/AutoItX3/control.rb
#select(item) ⇒ Object
Selects item.
Parameters
item-
The item to select.
Return value
Unknown.
Raises
- Au3Error
-
Control or window not found.
Example
ctrl.select("#1|#2")
995 996 997 |
# File 'lib/AutoItX3/control.rb', line 995 def select(item) send_command_to_tree_view("Select", item) end |