igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
39 lines (38 loc) • 790 B
JavaScript
/**
* Provides data for double value change events.
*/
export class IgxDoubleValueChangedEventArgs {
constructor() {
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
}
/**
* Gets the value before the change.
*/
get oldValue() {
return this.i.oldValue;
}
set oldValue(v) {
this.i.oldValue = +v;
}
/**
* Gets the new value.
*/
get newValue() {
return this.i.newValue;
}
set newValue(v) {
this.i.newValue = +v;
}
}