Method: AutoItX3::TreeView#collapse
- Defined in:
- lib/AutoItX3/control.rb
#collapse(item) ⇒ Object
Collapses item to hide its children.
Parameters
item-
The path of the item to collapse.
Return value
Unknown.
Raises
- Au3Error
-
Control or window not found.
Example
ctrl.collapse("#0")
882 883 884 |
# File 'lib/AutoItX3/control.rb', line 882 def collapse(item) send_command_to_tree_view("Collapse", item) end |