SSTab¶
SSTab Control
Extends ActiveXObject
Extends SeSSimulatedObject
Behavior Pattern: SSTabBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| SelectedTab | Text of the selected tab | GetSelectedTab |
Action Summary¶
| Action | Description |
|---|---|
| DoSelectTab | Selects the tab by name. |
Property Detail¶
SelectedTab¶
Text of the selected tab
Type: string
Accessors: GetSelectedTab
value = SeS('SomeSSTab').GetSelectedTab()
Action Detail¶
DoSelectTab¶
Selects the tab by name.
SeS('SomeSSTab').DoSelectTab(tabName, clickType)
Parameters:
| Name | Type | Description |
|---|---|---|
| tabName | string | Tab name to select |
| clickType | string | Type of click, can be one of "L" - left click, "LD" - double left click, "R" - right click, "RD" - double right click, "M" - middle click, "MD" - double middle click, "N" - don't click Possible values: "L", "LD", "R", "RD", "M", "MD", "N" Optional, Default: "L". |
Returns:
boolean: 'true' if success, 'false' otherwise.