ITabView.DisplayClippedCellHints

Syntax

DisplayClippedCellHints: Boolean;

Description

The DisplayClippedCellHints property determines whether to show a tooltip containing the full text of table cell.

Comments

Available values:

Example

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:

ITabView