AIAutoScrollSettings Class
The auto scrolling feature settings, which control the automatic scrolling. Use AIRunSettings to update them during the run session.

C# Syntax

public class AIAutoScrollSettings

Public Constructor

 NameDescription
Public ConstructorAIAutoScrollSettings Constructor

Creates a new instance of the AIAutoScrollSettings class.

C# Syntax

public AIAutoScrollSettings()
Top

Public Methods

 NameDescription
Public MethodEnable

Sets the auto scrolling feature to enabled state.

C# syntax

static void Enable ()

Public MethodEnable (ScrollDirection, int)

Sets the auto scrolling feature to enabled state and sets the direction and max pages to scroll settings.

C# syntax

static void Enable (ScrollDirection direction, int maxScrolls)

Parameters

direction

The direction in which to scroll.

maxScrolls

The maximum number of times to scroll in search of the object.

Exceptions

ArgumentException

Public MethodDisable

Sets the auto scrolling feature to disabled state.

C# syntax

static void Disable ()

Top