Method: AutoItX3::TreeView#check
- Defined in:
- lib/AutoItX3/control.rb
#check(item) ⇒ Object
Checks item, if it supports that operation.
Parameters
item-
The path of the item to check.
Return value
Unknown.
Raises
- Au3Error
-
Control or window not found.
Example
ctrl.check("#0|#3|#7")
869 870 871 |
# File 'lib/AutoItX3/control.rb', line 869 def check(item) send_command_to_tree_view("Check", item) end |