all files / export/pdf-base/pdf-style/ style.js

100% Statements 15/15
100% Branches 0/0
80% Functions 4/5
100% Lines 15/15
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22       119× 119× 119× 119× 119×        
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;
});