Is it possible to colour the individual tabs on a tab panel?
Searching for tabpanel in the help file shows you the below properties:foreground The foreground color of the tabpanel.
background The background color of the tabpanel
From the sample code//Set / Get the foreground color
var currentfg = elements.informationTabs.fgcolor;
elements.informationTabs.fgcolor = currentfg;
//Set / Get the background color
var currentbg = elements.informationTabs.bgcolor;
elements.informationTabs.bgcolor = currentbg;