On this page
AfterContentInit
interface
| npm Package | @angular/core | 
|---|---|
| Module | import { AfterContentInit } from '@angular/core'; | 
     
| Source | core/src/metadata/lifecycle_hooks.ts | 
Interface Overview
interface AfterContentInit { 
  ngAfterContentInit(): void
}
  How To Use
@Component({selector: 'my-cmp', template: `...`})
class MyComponent implements AfterContentInit {
  ngAfterContentInit() {
    // ...
  }
}
  Description
Members
ngAfterContentInit(): void
  © 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v5.angular.io/api/core/AfterContentInit