igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
39 lines (38 loc) • 1.57 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 { Base, toNullable, markType } from "igniteui-angular-core";
import { FormatCellsDialogTab_$type } from "./FormatCellsDialogTab";
/**
* @hidden
*/
export let FormatCellsDialogOptions = /*@__PURE__*/ (() => {
class FormatCellsDialogOptions extends Base {
constructor() {
super();
this.i = toNullable(FormatCellsDialogTab_$type, null);
this.b = false;
this.c = false;
this.d = false;
this.e = false;
this.f = false;
this.g = false;
this.h = false;
this.a = 0;
this.i = toNullable(FormatCellsDialogTab_$type, null);
this.b = true;
this.c = true;
this.d = false;
this.e = false;
this.f = true;
this.g = true;
this.h = true;
this.a = 63;
}
}
FormatCellsDialogOptions.$t = markType(FormatCellsDialogOptions, 'FormatCellsDialogOptions');
return FormatCellsDialogOptions;
})();