igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 1.57 kB
JavaScript
var IgrTriangulationStatusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrTriangulationStatusEventArgs() {
this.mounted = false;
}
Object.defineProperty(IgrTriangulationStatusEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrTriangulationStatusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrTriangulationStatusEventArgs.prototype.onImplementationCreated = function () {
};
IgrTriangulationStatusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrTriangulationStatusEventArgs.prototype, "currentStatus", {
/**
* The current status from 0 to 100 of the progressive triangulation.
*/
get: function () {
return this.i.currentStatus;
},
set: function (v) {
this.i.currentStatus = +v;
},
enumerable: false,
configurable: true
});
return IgrTriangulationStatusEventArgs;
}());
export { IgrTriangulationStatusEventArgs };