IEaxGrid.AdjustHyperlinks

Syntax

AdjustHyperlinks(Inverse: Boolean);

Parameters

Inverse. Parameter that determines hyperlinks operation mode in the express report table.

Description

The AdjustHyperlinks method sets the working mode for hyperlinks of the express report table elements. The mode of working is determined by the value of the Inverse parameter.

Comments

If this parameter is set to the True, hyperlinks are shown only for the elements that are able to go up the level of the dimension hierarchy. If the value is False, hyperlinks are displayed in the elements, which can move one level down the hierarchy.

Clicking on such elements causes moving one level up/down the element dimension hierarchy.

Example

Executing the example requires a form with the Button1 button, the UiErAnalyzer component named UiErAnalyzer1 and the TabSheetBox component named TabSheetBox1, that displays data of the express report loaded to UiErAnalyzer1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

Exp: IEaxAnalyzer;

Grid: IEaxGrid;

Begin

Exp := UiErAnalyzer1.ErAnalyzer;

Grid := Exp.Grid;

Grid.AdjustHyperlinks(True);

End Sub Button1OnClick;

After executing the example on clicking the button the table looks as follows:

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

Exp: IEaxAnalyzer;

Grid: IEaxGrid;

Begin

Exp := UiErAnalyzer1.ErAnalyzer;

Grid := Exp.Grid;

Grid.AdjustHyperlinks(False);

End Sub Button1OnClick;

After executing the example on clicking the button the table looks as follows:

See also:

IEaxGrid