autoScrollInterval property

num get autoScrollInterval

Gets or sets number of milliseconds between autoscroll events. The default value is 250.

Implementation

_i2.num get autoScrollInterval => _i4.getProperty(
      this,
      'autoScrollInterval',
    );
set autoScrollInterval (num value)

Implementation

set autoScrollInterval(_i2.num value) {
  _i4.setProperty(
    this,
    'autoScrollInterval',
    value,
  );
}