TabStrip20¶
TabStrip20 Control
Extends ActiveXObject
Extends SeSSimulatedObject
Behavior Pattern: TabStrip20Behavior
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('SomeTabStrip20').GetSelectedTab()
Action Detail¶
DoSelectTab¶
Selects the tab by name.
SeS('SomeTabStrip20').DoSelectTab(nameCaptionIndex, clickType, xOffset, yOffset)
Parameters:
| Name | Type | Description |
|---|---|---|
| nameCaptionIndex | string | number | index, name or caption of the item to be selected. |
| 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". |
| xOffset | number | X offset to click within node. Default is a center. Optional. |
| yOffset | number | Y offset to click within node. Default is a center. Optional. |
Returns:
boolean: 'true' if success, 'false' otherwise.