UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

27 lines (26 loc) 580 B
export class IgcMultiColumnComboBoxTextChangedEventArgs { /** * @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 oldText() { return this.i.oldText; } get newText() { return this.i.newText; } }