IEaxGrid.InternalHyperlinksEnabled

Fore Syntax

InternalHyperlinksEnabled: Boolean;

Fore.NET 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.

 Fore 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 for the UiErAnalyzer1 component the Active property  = True.

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.

 Fore.NET Example

The requirements and result of the Fore.NET Example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.

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

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    Eax: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    Eax := UiErAnalyzerNet1.AnalyzerUi.ErAnalyzer;
    Grid := Eax.Grid;
    Grid.InternalHyperlinksEnabled := True;
End Sub;

See also:

IEaxGrid