(x: number, y: number, duration: number)
| 364 | */ |
| 365 | @Method() |
| 366 | async scrollByPoint(x: number, y: number, duration: number): Promise<void> { |
| 367 | const scrollEl = await this.getScrollElement(); |
| 368 | return this.scrollToPoint(x + scrollEl!.scrollLeft, y + scrollEl!.scrollTop, duration); |
| 369 | } |
| 370 | |
| 371 | /** |
| 372 | * Scroll to a specified X/Y location in the component. |
no test coverage detected