scrollLeft property - Element class - dart:html library (original) (raw)

description

int getscrollLeft

Implementation

int get scrollLeft => JS<num>('num', '#.scrollLeft', this).round();

setscrollLeft (int value)

Implementation

set scrollLeft(int value) {
  JS("void", "#.scrollLeft = #", this, value.round());
}