CanAutoScroll: Boolean;
The CanAutoScroll property determines whether synchronous scrolling can be enabled. True : the scrolling mode can be enabled, False : synchronous scrolling cannot be enabled.
NOTE. This property is outdated, use IEaxAnalyzerCore.IsInteractiveModeAvailable.
Executing the example requires a form with a button named Button1, the ChartBox and 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.CanAutoScroll;
End Sub Button1OnClick;
After executing the example, the S variable stores the value that determines whether synchronous scrolling mode can be enabled.
See also: