igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.82 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 { GridColumnOptionsSectionBaseDescription } from "./GridColumnOptionsSectionBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GridColumnButtonOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnButtonOptionsDescription, _super);
function GridColumnButtonOptionsDescription() {
var _this = _super.call(this) || this;
_this.as = null;
_this.au = null;
_this.at = null;
_this.av = null;
return _this;
}
GridColumnButtonOptionsDescription.prototype.get_type = function () {
return "GridColumnButtonOptions";
};
Object.defineProperty(GridColumnButtonOptionsDescription.prototype, "applyButtonCaption", {
get: function () {
return this.as;
},
set: function (a) {
this.as = a;
this.g("ApplyButtonCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnButtonOptionsDescription.prototype, "cancelButtonCaption", {
get: function () {
return this.au;
},
set: function (a) {
this.au = a;
this.g("CancelButtonCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnButtonOptionsDescription.prototype, "applyButtonClickRef", {
get: function () {
return this.at;
},
set: function (a) {
this.at = a;
this.g("ApplyButtonClickRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnButtonOptionsDescription.prototype, "cancelButtonClickRef", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.g("CancelButtonClickRef");
},
enumerable: false,
configurable: true
});
GridColumnButtonOptionsDescription.$t = markType(GridColumnButtonOptionsDescription, 'GridColumnButtonOptionsDescription', GridColumnOptionsSectionBaseDescription.$);
return GridColumnButtonOptionsDescription;
}(GridColumnOptionsSectionBaseDescription));
export { GridColumnButtonOptionsDescription };