AfterContentChecked

interface

npm Package @angular/core
Module import { AfterContentChecked } from '@angular/core';
Source core/src/metadata/lifecycle_hooks.ts

Lifecycle hook that is called after every check of a directive's content.

Interface Overview

interface AfterContentChecked { 
  ngAfterContentChecked(): void
}

How To Use

@Component({selector: 'my-cmp', template: `...`})
class MyComponent implements AfterContentChecked {
  ngAfterContentChecked() {
    // ...
  }
}

Description

See "Lifecycle Hooks Guide".

Members

ngAfterContentChecked(): void

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v4.angular.io/api/core/AfterContentChecked