igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.45 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 WebColumnVisibilityChangedEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebColumnVisibilityChangedEventArgsDetailDescription, _super);
function WebColumnVisibilityChangedEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.p = null;
_this.n = false;
return _this;
}
WebColumnVisibilityChangedEventArgsDetailDescription.prototype.get_type = function () {
return "WebColumnVisibilityChangedEventArgsDetail";
};
Object.defineProperty(WebColumnVisibilityChangedEventArgsDetailDescription.prototype, "column", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("Column");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebColumnVisibilityChangedEventArgsDetailDescription.prototype, "newValue", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("NewValue");
},
enumerable: false,
configurable: true
});
WebColumnVisibilityChangedEventArgsDetailDescription.$t = markType(WebColumnVisibilityChangedEventArgsDetailDescription, 'WebColumnVisibilityChangedEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebColumnVisibilityChangedEventArgsDetailDescription.__marshalByValue1 = true;
WebColumnVisibilityChangedEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnVisibilityChangedEventArgsDetail";
return WebColumnVisibilityChangedEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebColumnVisibilityChangedEventArgsDetailDescription };