IEaxAnalyzeCore.IsInteractiveModeAvailable

Syntax

IsInteractiveModeAvailable(InteractiveMode: EaxInteractiveMode): Boolean;

Parameters

InteractiveMode. Express report interactivity mode.

Description

The IsInteractiveModeAvailable property determines whether one can toggle the selected interactive mode of the express report.

Example

Executing the example requires a form with a button named Button1 on the form, the TabSheetBox component and the UiErAnalyzer component named UiErAnalyzer1 that is 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