igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
27 lines (26 loc) • 585 B
JavaScript
export class IgcMultiColumnComboBoxValueChangedEventArgs {
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
get oldValue() {
return this.i.oldValue;
}
get newValue() {
return this.i.newValue;
}
}