igniteui-react-core
Version:
Ignite UI React Core.
47 lines (46 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 { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { FormatCellEventArgsDescription } from "./FormatCellEventArgsDescription";
/**
* @hidden
*/
var FormatCellEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FormatCellEventArgsDescriptionMetadata, _super);
function FormatCellEventArgsDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
FormatCellEventArgsDescriptionMetadata.b = function (a) {
if (FormatCellEventArgsDescriptionMetadata.a == null) {
FormatCellEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
FormatCellEventArgsDescriptionMetadata.c(FormatCellEventArgsDescriptionMetadata.a);
}
if (a.k(FormatCellEventArgsDescriptionMetadata.a)) {
return;
}
a.ac(FormatCellEventArgsDescriptionMetadata.a);
};
FormatCellEventArgsDescriptionMetadata.c = function (a) {
a.item("Row", "Number:int");
a.item("ItemRef", "(w:Item,wf:Item)DataRef");
a.item("ValueRef", "(w:Value,wf:Value)DataRef");
a.item("Text", "String");
a.item("IsSummary", "Boolean");
a.item("IsGroup", "Boolean");
};
FormatCellEventArgsDescriptionMetadata.d = function (a) {
FormatCellEventArgsDescriptionMetadata.b(a);
a.ae("FormatCellEventArgs", function () { return new FormatCellEventArgsDescription(); });
a.ad("FormatCellEventArgs", FormatCellEventArgsDescriptionMetadata.a);
};
FormatCellEventArgsDescriptionMetadata.$t = markType(FormatCellEventArgsDescriptionMetadata, 'FormatCellEventArgsDescriptionMetadata');
FormatCellEventArgsDescriptionMetadata.a = null;
return FormatCellEventArgsDescriptionMetadata;
}(Base));
export { FormatCellEventArgsDescriptionMetadata };