define(["require", "exports", "@syncfusion/ej2-pdf-export", "../index", "../../../base/interface"], function (require, exports, ej2_pdf_export_1, index_1, interface_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfTreeGridStyleBase = (function () {
function PdfTreeGridStyleBase() {
}
return PdfTreeGridStyleBase;
}());
exports.PdfTreeGridStyleBase = PdfTreeGridStyleBase;
var PdfTreeGridStyle = (function () {
function PdfTreeGridStyle() {
this.cellSpacing = 0;
this.borderOverlapStyle = ej2_pdf_export_1.PdfBorderOverlapStyle.Overlap;
this.allowHorizontalOverflow = false;
this.horizontalOverflowType = interface_1.PdfHorizontalOverflowType.LastPage;
this.cellPadding = new index_1.PdfPaddings();
}
return PdfTreeGridStyle;
}());
exports.PdfTreeGridStyle = PdfTreeGridStyle;
});
|