igniteui-react-core
Version:
Ignite UI React Core.
34 lines (33 loc) • 794 B
JavaScript
export class IgrTriangulationStatusEventArgs {
get nativeElement() {
return this._implementation.nativeElement;
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
this.mounted = false;
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* The current status from 0 to 100 of the progressive triangulation.
*/
get currentStatus() {
return this.i.currentStatus;
}
set currentStatus(v) {
this.i.currentStatus = +v;
}
}