1@ViewChild(IonContent) content: IonContent;
2
3ScrollToBottom(){
4 this.content.scrollToBottom(1500);
5 }
6
7 ScrollToTop(){
8 this.content.scrollToTop(1500);
9 }
10
11 ScrollToPoint(X,Y){
12 this.content.scrollToPoint(X,Y,1500);
13 }