Method: AutoItX3::TabBook#left

Defined in:
lib/AutoItX3/control.rb

#leftObject

Shows the tab left to the current one.

Return value

Returns the number of the now shown tab, starting with 1.

Raises

Au3Error

Control or window not found.

Example

tab.left #| 1


614
615
616
617
# File 'lib/AutoItX3/control.rb', line 614

def left
  send_command_to_control("TabLeft")
  current
end