Skip to content

DomDynamicsAXTabControl

This behavior pattern implements standard behavior for TabControl control.

Extends HTMLObject

Extends SeSSimulatedObject

Behavior Pattern: DomDynamicsAXTabControlBehavior

Property Summary

Property Description Getter Setter
Expanded State of a tab with name. GetExpanded
ItemsCount Number of tabs. GetItemsCount
TabName Name of a tab at index GetTabName

Action Summary

Action Description
DoCollapse Collapses specific tab in a tab control.
DoExpand Expands specific tab in a tab control.

Property Detail

Expanded

State of a tab with name. Returns 'true' if the tab is expanded, 'false' - otherwise.

Getter Parameters:

Name Type Description
tabName string Name of a tab.

Type: boolean

Accessors: GetExpanded

value = SeS('SomeDomDynamicsAXTabControl').GetExpanded(/**string*/ tabName)

ItemsCount

Number of tabs.

Type: number

Accessors: GetItemsCount

value = SeS('SomeDomDynamicsAXTabControl').GetItemsCount()

TabName

Name of a tab at index

Getter Parameters:

Name Type Description
index number Index of a tab.

Type: string

Accessors: GetTabName

value = SeS('SomeDomDynamicsAXTabControl').GetTabName(/**number*/ index)

Action Detail

DoCollapse

Collapses specific tab in a tab control.

SeS('SomeDomDynamicsAXTabControl').DoCollapse(tabName)

Parameters:

Name Type Description
tabName string Name of a tab

Returns:

boolean: 'true' if success, 'false' otherwise.

DoExpand

Expands specific tab in a tab control.

SeS('SomeDomDynamicsAXTabControl').DoExpand(tabName)

Parameters:

Name Type Description
tabName string Name of a tab

Returns:

boolean: 'true' if success, 'false' otherwise.