IEaxAnalyzerCore.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 the mode.

Example

Executing the example requires a form with a button on it named Button1, the TabSheetBox component 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 the example, the S variable stores the value that determines whether synchronous scrolling mode can be enabled.

See also:

IEaxAnalyzeCore