Help Angular by taking a 1 minute survey!Go to surveyHome

SimpleChange

Represents a basic change from a previous to a new value for a single property on a directive instance. Passed as a value in a SimpleChanges object to the ngOnChanges hook.

      
      class SimpleChange {
  constructor(previousValue: any, currentValue: any, firstChange: boolean)
  previousValue: any
  currentValue: any
  firstChange: boolean
  isFirstChange(): boolean
}
    

See also

Constructor

constructor(previousValue: any, currentValue: any, firstChange: boolean)
      
      constructor(previousValue: any, currentValue: any, firstChange: boolean)
    
Parameters
previousValue any
currentValue any
firstChange boolean

Properties

Property Description
previousValue: any Declared in constructor.
currentValue: any Declared in constructor.
firstChange: boolean Declared in constructor.

Methods

Check whether the new value is the first value assigned.

isFirstChange(): boolean
      
      isFirstChange(): boolean
    
Parameters

There are no parameters.

Returns

boolean