UseItemColorForToolTipBorder: Boolean;
The UseItemColorForToolTipBorder property determines whether the element color is used to select the tooltip border when pointing the mouse cursor on it.
The default value of this property is True.
If the value is True, tooltip border format is equal to element color:
If the value is False, tooltip border is filled with one color that does not depend on the element color:
Executing the example requires an express report with the EXP identifier that contains a bubble tree.
The module must have links to the Metabase, Vizualizators, Express system assemblies.
In the example dependence of tooltip borders on element color is disabled:
Sub UserProc;
Var
Metabase: IMetabase; // Metabase
EaxAnalyzer: IEaxAnalyzer; // Express report
BubbleTree: IVZBubbleTree; // Bubble tree
Begin
// Get metabase object
Metabase := MetabaseClass.Active;
// Open express report
EaxAnalyzer := Metabase.ItemById("EXP").Edit As IEaxAnalyzer;
// Get bubble tree
BubbleTree := EaxAnalyzer.BubbleTree.BubbleTree;
// Disable filling of tooltip borders with element color
BubbleTree.UseItemColorForToolTipBorder := False;
(EaxAnalyzer As IMetaBaseObject).Save;
End Sub UserProc;
After executing the example tooltip borders are filled with one color that does not depend on the element color.
See also: