UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

27 lines (26 loc) 585 B
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; } }