Description
Use the wItem
property to get the caption of the carousel control’s item by its index.
Declaration
TestObj.wItem(Index)
Read-Only Property | String |
TestObj | A variable, parameter or expression that specifies a reference to one of the objects listed in the Applies To section | |||
Index | [in] | Required | Integer |
Applies To
The property is applied to the following objects:
View Mode
This property is available in the Object Browser panel and in other panels and dialogs in both Basic and Advanced view modes.
Parameters
The property has the following parameter:
Index
Specifies the index of the item, whose caption you want to get. The index is zero-based, that is, the first item has index 0, the second - 1, and so on. The index of the last item is wItemCount
- 1.
Property Value
A string holding the caption of the specified item.
Remarks
If the specified item was not found, TestComplete posts an error message to the test log.
If you use Python or DelphiScript, you should enclose the parameter of the wItem
property in square brackets: wItem[Index]
.