igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
45 lines (44 loc) • 1.37 kB
JavaScript
import { CheckboxListIndexType_$type } from "./CheckboxListIndexType";
import { CheckboxListIndexTypeChangedEventArgs as CheckboxListIndexTypeChangedEventArgs_internal } from "./CheckboxListIndexTypeChangedEventArgs";
import { ensureEnum } from "igniteui-webcomponents-core";
export class IgcCheckboxListIndexTypeChangedEventArgs {
createImplementation() {
return new CheckboxListIndexTypeChangedEventArgs_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
get oldValue() {
return this.i.b;
}
set oldValue(v) {
this.i.b = ensureEnum(CheckboxListIndexType_$type, v);
}
get newValue() {
return this.i.a;
}
set newValue(v) {
this.i.a = ensureEnum(CheckboxListIndexType_$type, v);
}
}