igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
48 lines (47 loc) • 1.03 kB
JavaScript
/**
* EventArgs class for property updated events.
*/
export class IgxPropertyUpdatedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* Name of the property being updated.
*/
get propertyName() {
return this.i.propertyName;
}
set propertyName(v) {
this.i.propertyName = v;
}
/**
* Old or previous value of the property being updated.
*/
get oldValue() {
return this.i.oldValue;
}
set oldValue(v) {
this.i.oldValue = v;
}
/**
* New or current value of the property being updated.
*/
get newValue() {
return this.i.newValue;
}
set newValue(v) {
this.i.newValue = v;
}
}