DomDynamicsCrmUnifiedInterfaceList¶
This behavior pattern implements standard behavior for List control.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: DomDynamicsCrmUnifiedInterfaceListBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| ItemCount | Number of items. | GetItemCount | |
| ItemNameByIndex | Returns item name by its index. | GetItemNameByIndex |
Action Summary¶
| Action | Description |
|---|---|
| DoClickItem | Performs click on the item |
Property Detail¶
ItemCount¶
Number of items.
Type: number
Accessors: GetItemCount
value = SeS('SomeDomDynamicsCrmUnifiedInterfaceList').GetItemCount()
ItemNameByIndex¶
Returns item name by its index.'false' if name is not found.
Getter Parameters:
| Name | Type | Description |
|---|---|---|
| index | number | Index of the item |
Type: string|boolean
Accessors: GetItemNameByIndex
value = SeS('SomeDomDynamicsCrmUnifiedInterfaceList').GetItemNameByIndex(/**number*/ index)
Action Detail¶
DoClickItem¶
Performs click on the item
SeS('SomeDomDynamicsCrmUnifiedInterfaceList').DoClickItem(item, xOffset, yOffset)
Parameters:
| Name | Type | Description |
|---|---|---|
| item | string | number | Index or name of the item to be selected. |
| xOffset | number | X offset to click within object. Calculated from the top-left corner. Default is a center. Floating point in the range (-2, 2) means percentage of the width. Optional. |
| yOffset | number | Y offset to click within object. Calculated from the top-left corner. Default is a center. Floating point in the range (-2, 2) means percentage of the height. Optional. |
Returns:
boolean: 'true' if successful, 'false' otherwise.