Table of Contents

Interface ITable

Namespace
HP.LFT.SDK.Mobile
Assembly
HP.LFT.SDK.dll

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

item uint

The 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

section uint

The numeric index of the section from which to delete the specified Item

item uint

The 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

item uint

The 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

section uint

The numeric index of the section in which to insert the specified item

item uint

The 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

srcItem uint

The numeric index of the item to move

destItem uint

The 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

srcSection uint

The numeric index of the section from which to move the specified SrcItem

srcItem uint

The numeric index of the item to move

destSection uint

The numeric index of the section in which to place the specified DestItem

destItem uint

The numeric index of the new location for the item

Scroll(uint)

Scrolls to the specified item in the table.

void Scroll(uint item)

Parameters

item uint

The 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

section uint

The numeric index of the section containing the item to scroll to.

item uint

The numeric index of the item to scroll to.

Select(uint)

Selects item in the table.

void Select(uint item)

Parameters

item uint

The 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)

Parameters

section uint

The numeric index of the section containing the item to select.

item uint

The numeric index of the item to select.