igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.65 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.p = null;
_this.u = 0;
_this.s = false;
return _this;
}
WebPinColumnEventArgsDetailDescription.prototype.get_type = function () {
return "WebPinColumnEventArgsDetail";
};
Object.defineProperty(WebPinColumnEventArgsDetailDescription.prototype, "column", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Column");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPinColumnEventArgsDetailDescription.prototype, "insertAtIndex", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("InsertAtIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPinColumnEventArgsDetailDescription.prototype, "isPinned", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("IsPinned");
},
enumerable: false,
configurable: true
});
WebPinColumnEventArgsDetailDescription.$t = markType(WebPinColumnEventArgsDetailDescription, 'WebPinColumnEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebPinColumnEventArgsDetailDescription.__marshalByValue1 = true;
WebPinColumnEventArgsDetailDescription.__marshalByValueAlias1 = "PinColumnEventArgsDetail";
return WebPinColumnEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebPinColumnEventArgsDetailDescription };