I have defined template
@Component({ selector: \'name\', directives: [ ... ], templateUrl: \'name.html\' })
and class
Assuming you want to display the host scroll (and not the windows one) and that you are using angular +2.1
@HostListener('scroll', ['$event']) private onScroll($event:Event):void { console.log($event.srcElement.scrollLeft, $event.srcElement.scrollTop); };