igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 2.58 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebPinColumnEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPinColumnEventArgsDetailDescription, _super);
function WebPinColumnEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.r = 0;
_this.p = false;
return _this;
}
WebPinColumnEventArgsDetailDescription.prototype.get_type = function () {
return "WebPinColumnEventArgsDetail";
};
Object.defineProperty(WebPinColumnEventArgsDetailDescription.prototype, "column", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Column");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPinColumnEventArgsDetailDescription.prototype, "insertAtIndex", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.g("InsertAtIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPinColumnEventArgsDetailDescription.prototype, "isPinned", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("IsPinned");
},
enumerable: false,
configurable: true
});
WebPinColumnEventArgsDetailDescription.$t = markType(WebPinColumnEventArgsDetailDescription, 'WebPinColumnEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebPinColumnEventArgsDetailDescription.__marshalByValue1 = true;
WebPinColumnEventArgsDetailDescription.__marshalByValueAlias1 = "PinColumnEventArgsDetail";
return WebPinColumnEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebPinColumnEventArgsDetailDescription };