FlexItem.TitleBgColor Property
Specifies the background color for the column title.
The background color of the title is influenced by the TitleBgColor property as well as the TitleBgColor defined in FlexView. The FlexItem TitleBgColor specification takes precedence, as shown in the following table.
| FlexItem.TitleBgColor | FlexView.TitleBgColor | Display color |
|---|---|---|
| Unspecified | Unspecified | Default color |
| Unspecified | Specified | FlexView.TitleBgColor |
| Specified | unspecified | FlexItem.TitleBgColor |
| Specified | Specified | FlexItem.TitleBgColor |
TitleBgColor example
FlexView FlexView1 {
:
TitleBgColor = $6666FF;
:
FlexRecord FlexRecord1 {
:
FlexColumnSet FlexColumnSet1 {
:
Title = "TreeSet";
TitleBgColor = $33FF33;
:
FlexTreeHeader FlexTreeHeader1 {
Title = "Tree1";
:
}
FlexTreeHeader FlexTreeHeader2 {
Title = "Tree2";
:
}
}
}
}
Added since Ver.4.1.0
