UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

100 lines (99 loc) 3.8 kB
/* 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 WebColumnExportingEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebColumnExportingEventArgsDetailDescription, _super); function WebColumnExportingEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.aa = null; _this.z = null; _this.w = 0; _this.s = false; _this.t = false; _this.p = null; return _this; } WebColumnExportingEventArgsDetailDescription.prototype.get_type = function () { return "WebColumnExportingEventArgsDetail"; }; Object.defineProperty(WebColumnExportingEventArgsDetailDescription.prototype, "header", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("Header"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnExportingEventArgsDetailDescription.prototype, "field", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("Field"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnExportingEventArgsDetailDescription.prototype, "columnIndex", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("ColumnIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnExportingEventArgsDetailDescription.prototype, "cancel", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("Cancel"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnExportingEventArgsDetailDescription.prototype, "skipFormatter", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("SkipFormatter"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnExportingEventArgsDetailDescription.prototype, "grid", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("Grid"); }, enumerable: false, configurable: true }); WebColumnExportingEventArgsDetailDescription.$t = markType(WebColumnExportingEventArgsDetailDescription, 'WebColumnExportingEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebColumnExportingEventArgsDetailDescription.__marshalByValue1 = true; WebColumnExportingEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnExportingEventArgsDetail"; return WebColumnExportingEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebColumnExportingEventArgsDetailDescription };