| Returns the look of the
Tab and
Tabbox .
It is, in fact, a portion of the style class that are used to
generate the style of
Tabs and
Tab .
If the style class (
Tabbox.getSclass ) of this tab box is not
defined and the mold is default,
"tab-3d" and "tab-v3d" are returned for horizontal and vertical
orient, respectively.
If the style class not defined and the mold is accordion,
"tabaccd-3d" and "tabaccd-v3d" returned (note: accordion doesn't support vertical yet).
If the style class is defined, say "lite",
then this method return "tab-lite" and "tab-vlite" for
horizontal and vertical orient, respectively, and "tabacc-lite" for horizontal accordion.
If the mold is not "default" nor "accordion", this method returns
"tab" + getMold() + "-" + (vertical ? 'v': '') + getSclass().
With this method,
Tab and
Tabpanel generate
the style class accordingly. For example, if the mold is "default"
and the style class not defined, then
"tab-3d-tl-sel" for the top-left corner of the selected tab,
"tab-3d-tm-uns" for the top-middle border of the
non-selected tab, and so on.
since: 3.0,0 |