ITabView.DisplayClippedCellHints

Fore Syntax

DisplayClippedCellHints: Boolean;

Fore.NET Syntax

DisplayClippedCellHints: boolean;

Description

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

Comments

Available values:

Fore Example

To execute the example an express report with the EXPRESS identifier is required.

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.

Fore.NET Example

The requirements and result of the Fore.NET Example execution match with those in the Fore Example.

Imports Prognoz.Platform.Interop.Express;
Imports Prognoz.Platform.Interop.Tab;

Public Shared Sub Main(Params: StartParams);
Var
    MB: IMetabase;
    Express: IEaxAnalyzer;
    Tab: ITabSheet;
    View: ITabView;
Begin
    MB := Params.Metabase;
    Express := MB.ItemById["EXPRESS"].Edit() As IEaxAnalyzer;
    Tab := Express.Grid.TabSheet;
    View := Tab.View;
    View.DisplayClippedCellHints := True;
    (Express As IMetabaseObject).Save();
End Sub;

See also:

ITabView