class %ZEN.SVGComponent.tabBar
extends svgComponent
SVG tabBar control
property height
as %ZEN.Datatype.length [ InitialExpression = 32 ];
height of the total tab header
property maxOneTabWidth
as %ZEN.Datatype.integer [ InitialExpression = 200 ];
the maximum width of the tabs (from bottom to bottom) as multiples of the height
property onChange
as %ZEN.Datatype.eventHandler;
The method to call after the selected tab is changed
property selectedIndex
as %ZEN.Datatype.integer [ InitialExpression = 0 ];
the index of the selected tab
property tabCaptions
as %ZEN.Datatype.caption;
The captions for the tabs. The first character is the string separator.
method drawOneTab(index, tabwidth, isActive)
[ Language = javascript ]
method drawTabs()
[ Language = javascript ]
method renderContents()
[ Language = javascript ]
Render the inner SVG contents of this component.
method setProperty(property, value, value2)
[ Language = javascript ]
Set the value of a named property.
method tabClicked(index)
[ Language = javascript ]