IEaxAnalyzer.IsInteractiveModeAvailable

Syntax

IsInteractiveModeAvailable(InteractiveMode: EaxInteractiveMode): Boolean;

Parameters

InteractiveMode: Express report interactive mode.

Description

The property is read-only.

The IsInteractiveModeAvailable property determines whether it is possible to switch to a selected interactive mode of the express report. Use the InteractiveMode parameter to select desired mode.

Example

Executing this example requires a form with a button on it named Button1, the TabSheetBox components and the UiErAnalyzer component named UiErAnalyzer1 which is used as a data source.

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

Var

An: IEaxAnalyzer;

S: Boolean;

Begin

An := UiErAnalyzer1.ErAnalyzer;

S := An.IsInteractiveModeAvailable(EaxInteractiveMode.AutoScrolling);

End Sub Button1OnClick;

After executing this example the variable "S" stores the value that determines whether synchronous scrolling can be enabled.

See also:

IEaxAnalyzer