Method: AutoItX3::ListView#clear_selection
- Defined in:
- lib/AutoItX3/control.rb
#clear_selection ⇒ Object Also known as: select_none
AutoItX3::ListView#clear_selection ==> nil
AutoItX3::ListView#select_none ==> nil
Clears the selection.
Return value
Unknown.
Raises
- Au3Error
-
Control or window not found.
Example
ctrl.clear_selection
809 810 811 |
# File 'lib/AutoItX3/control.rb', line 809 def clear_selection send_command_to_list_view("SelectClear") end |