Cookies concent notice

This site uses cookies from Google to deliver its services and to analyze traffic.
Learn more
Skip to main content
Say hello to Angular's future home!Check out Angular.devHome
/

ng.getContext

If inside an embedded view (e.g. *ngIf or *ngFor), retrieves the context of the embedded view that the element is part of. Otherwise retrieves the instance of the component whose view owns the element (in this case, the result is the same as calling getOwningComponent).

      
      ng.getContext<T extends {}>(element: Element): T | null
    
Parameters
element Element

Element for which to get the surrounding component instance.

Returns

T | null: Instance of the component that is around the element or null if the element isn't inside any component.