IsInteractiveModeAvailable(InteractiveMode: EaxInteractiveMode): Boolean;
InteractiveMode - express report interactive mode.
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.
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 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: