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, it is recommended to use IEaxAnalyzer.IsInteractiveModeAvailable instead.
Executing this example requires a form with a button on 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 this example the variable S stores the value that determines whether synchronous scrolling can be enabled.
See also: