IEaxGrid.InternalHyperlinksEnabled

Syntax

InternalHyperlinksEnabled: Boolean;

Description

The InternalHyperlinksEnabled property determines whether hyperlinks are used for data drilldown in the table.

Comments

Available Values:

The hyperlinks use is available only if drilldown is possible. To check whether data drilldown is possible in the table, use the IEaxGrid.IsCellDrillable and IEaxGrid.IsRangeDrillable properties.

Example

Executing the example requires a form containing the Button component named Button1, the TabSheetBox component named TabSheetBox1 and the UiErAnalyzer component named UiErAnalyzer1. Set UiErAnalyzer1 as a data source for the TabSheetBox1 component.

Set express report as a data source for the UiErAnalyzer1 component. Set the Active property to True for the UiErAnalyzer1 component.

The procedure is a handler of the OnClick event for the Button1 component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    Eax: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    Eax := UiErAnalyzer1.ErAnalyzer;
    Grid := Eax.Grid;
    Grid.InternalHyperlinksEnabled := True;
End Sub Button1OnClick;

After executing the example the table data are displayed as hyperlinks.

See also:

IEaxGrid