DisplayClippedCellHints: Boolean;
The DisplayClippedCellHints property determines whether to show a tooltip containing the full text of table cell.
Available values:
True. A tooltip is shown for the table cell.
False. A tooltip is not shown for the table cell.
Executing the example requires an express report with the EXPRESS identifier.
Add links to the Metabase, Tab, Express system assemblies.
Sub UserProc;
Var
MB: IMetabase;
Express: IEaxAnalyzer;
Tab: ITabSheet;
View: ITabView;
Begin
MB := MetabaseClass.Active;
Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
Tab := Express.Grid.TabSheet;
View := Tab.View;
View.DisplayClippedCellHints := True;
(Express As IMetabaseObject).Save;
End Sub UserProc;
After executing the example tooltips containing the full text of cells can be shown for table sheet cells.
See also: