Свойство deltaX
Значение, которое ожидается прокрутить по горизонтали, в единицах, определенных deltaMode.
См. также:
- WheelEvent.deltaX из W3C.
Реализация
num get deltaX {
// deltaX may be missing or undefined.
num? value = JS('', '#.deltaX', this);
if (value != null) return value;
throw new UnsupportedError('deltaX is not supported');
}
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-html/WheelEvent/deltaX.html