class RAutomation::Adapter::MsUia::TabControl

Public Instance Methods

items() click to toggle source
# File lib/rautomation/adapter/ms_uia/tab_control.rb, line 30
def items
  values.each_with_index.map {|value, index| TabItem.new(self, value, index) }
end
select(index) click to toggle source
# File lib/rautomation/adapter/ms_uia/tab_control.rb, line 22
def select(index)
  UiaDll::select_tab(search_information, index)
end
set(value) click to toggle source
# File lib/rautomation/adapter/ms_uia/tab_control.rb, line 26
def set(value)
  UiaDll::select_tab(search_information, value)
end
value() click to toggle source
# File lib/rautomation/adapter/ms_uia/tab_control.rb, line 34
def value
  UiaDll::tab_selection(search_information)
end

Private Instance Methods

values() click to toggle source
# File lib/rautomation/adapter/ms_uia/tab_control.rb, line 39
def values
  UiaDll::tab_items(search_information)
end