Method: AutoItX3::TreeView#uncheck

Defined in:
lib/AutoItX3/control.rb

#uncheck(item) ⇒ Object

Unchecks item if it suports that operation (i.e. it’s a checkbox).

Parameters

item

The item to uncheck.

Return value

Unknown.

Raises

Au3Error

Control or Window not found.

Example

ctrl.uncheck("#0|#3")


1008
1009
1010
# File 'lib/AutoItX3/control.rb', line 1008

def uncheck(item)
  send_command_to_tree_view("Uncheck", item)
end