Equinox Online Help - Language Reference - A to Z

Home

ActiveTab

Applies to
SyntaxActiveTab(ObjectNameExpression)
Action[Function] Determines the active tab on a tabbed control
ScopeOnly usable in form methods
Notes

This statement allows the user to find out which tab on a tabbed control identified by the ObjectNameExpression argument is currently active. This by implication also returns the active overlay.

CategoryTabbed controls
See Also ChangeTab, SetTabText, ShowOverlay
Example

This line determines which tab on the "address" tab control is active and uses this information to hide a page when the tab is changed.

| After Page Event
if ActiveTab("AddressTC") = 3 then
ShowPage "Despatch", false
end if