angular / 14.0.0 / api / router / scroll.html /

Scroll

class final

An event triggered by scrolling.

class Scroll {
  constructor(routerEvent: NavigationEnd, position: [number, number], anchor: string)
  type: EventType.Scroll
  routerEvent: NavigationEnd
  position: [...]
  anchor: string | null
  toString(): string
}

Constructor

constructor(routerEvent: NavigationEnd, position: [number, number], anchor: string)

Parameters
routerEvent NavigationEnd
position [number, number]
anchor string

Properties

Property Description
type: EventType.Scroll Read-Only
routerEvent: NavigationEnd Read-Only Declared in Constructor
position: [ number, number ] | null Read-Only Declared in Constructor
anchor: string | null Read-Only Declared in Constructor

Methods

toString(): string

Parameters

There are no parameters.

Returns

string

© 2010–2022 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/api/router/Scroll