Method: AutoIt::Control#control_command_show_drop_down
- Defined in:
- lib/autoit/control.rb
#control_command_show_drop_down(title, text, control) ⇒ Object
Drops a ComboBox @param: title: The title of the window to access. @param: text: The text of the window to access. @param: control: The control to interact with.
118 119 120 |
# File 'lib/autoit/control.rb', line 118 def control_command_show_drop_down(title, text, control) command 'ControlCommand', [title, text, control, 'ShowDropDown', ''] end |