AfterViewChecked

Stable

Interface

What it does

Lifecycle hook that is called after every check of a component's view.

How to use

.

  1. @Component({selector: 'my-cmp', template: `...`})
  2. class MyComponent implements AfterViewChecked {
  3. ngAfterViewChecked() {
  4. // ...
  5. }
  6. }

Interface Overview

interface AfterViewChecked {

}

Interface Description

Interface Details

exported from core/index, defined in core/src/metadata/lifecycle_hooks.ts