Interface ITable
A table object in a mobile application.
public interface ITable : ITestObject, ITestObjectDescriber, IUiObjectBase, IEnabledProvider, IScrollable
- Inherited Members
- Extension Methods
Methods
Delete(uint)
Deletes the specified item from the table. (iOS only)
void Delete(uint item)
Parameters
itemuintThe numeric index of the item to delete.
Delete(uint, uint)
Deletes the specified item or section in the table. (iOS Only)
void Delete(uint section, uint item)
Parameters
sectionuintThe numeric index of the section from which to delete the specified Item
itemuintThe numeric index of the item to delete
Insert(uint)
Inserts an item at the specified location in the table. (iOS Only)
void Insert(uint item)
Parameters
itemuintThe numeric index of the location to insert the item.
Insert(uint, uint)
Inserts an item at the specified location in the table. (iOS only)
void Insert(uint section, uint item)
Parameters
sectionuintThe numeric index of the section in which to insert the specified item
itemuintThe numeric index of the location for the new item within the section
MoveItem(uint, uint)
Moves an item or section in the table (iOS only)
void MoveItem(uint srcItem, uint destItem)
Parameters
srcItemuintThe numeric index of the item to move
destItemuintThe numeric index of the new location for the item
MoveItem(uint, uint, uint, uint)
Moves an item or section in the table (iOS only)
void MoveItem(uint srcSection, uint srcItem, uint destSection, uint destItem)
Parameters
srcSectionuintThe numeric index of the section from which to move the specified SrcItem
srcItemuintThe numeric index of the item to move
destSectionuintThe numeric index of the section in which to place the specified DestItem
destItemuintThe numeric index of the new location for the item
Scroll(uint)
Scrolls to the specified item in the table.
void Scroll(uint item)
Parameters
itemuintThe numeric index of the item to scroll to.
Scroll(uint, uint)
Scrolls to the specified item in the specified section of the table.
void Scroll(uint section, uint item)
Parameters
sectionuintThe numeric index of the section containing the item to scroll to.
itemuintThe numeric index of the item to scroll to.
Select(uint)
Selects item in the table.
void Select(uint item)
Parameters
itemuintThe numeric index of the item to select.
Select(uint, uint)
Selects an item in a section of the table.
void Select(uint section, uint item)