DisplayClippedCellHints: Boolean;
The DisplayClippedCellHints property determines whether to show a tooltip containing the full text of table cell.
Available values:
True. Default value. Tooltips are shown for table cells.
False. Tooltips are not shown for table cells.
Executing the example requires an express report with the EXPRESS identifier.
Add links to the Express and Metabase system assemblies.
Sub UserProc;
Var
MB: IMetabase;
Express: IEaxAnalyzer;
//Report: IPrxReport;
Options: IEaxAnalyzerOptions;
Begin
MB := MetabaseClass.Active;
// Express report
Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
Options := Express.Options;
// Disable displaying of tooltip with cell value
Options.DisplayClippedCellHints := False;
// Save changes
(Express As IMetabaseObject).Save;
End Sub UserProc;
After executing the example, displaying of tooltips is disabled for express report cells.
See also: