| Returns the look of the caption.
It is, in fact, a portion of the style class that are used
to generate the style for the caption.
If the style class (
Groupbox.getSclass ) of this groupbox is not
defined and the mold is "default", then "groupbox" is returned.
If the mold is "default" or "3d", and the style class is defined,
say "lite", then this method return "groupbox-lite".
If the mold is not "default", and the style class is not defined,
this method returns:
"groupbox-" + getMold()
If the mold is not "default" and the style class is defined,
this method returns
"groupbox-" + getMold() + "-" + getSclass()
With this method, the caption generates the style class
for the caption accordingly. For example, if the mold is "3d"
and the style class not defined, then
"groupbox-3d-tl" for the top-left corner of the caption,
"groupbox-3d-tm" for the top-middle border, and so on.
Note: currenlty only the 3d mold supports this feature.
In other words, the default mold ignores this method.
since: 3.0,0 |