all files / graphics/figures/ enum.js

100% Statements 21/21
100% Branches 6/6
100% Functions 4/4
100% Lines 21/21
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27            
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var PdfLayoutType;
    (function (PdfLayoutType) {
        PdfLayoutType[PdfLayoutType["Paginate"] = 0] = "Paginate";
        PdfLayoutType[PdfLayoutType["OnePage"] = 1] = "OnePage";
    })(PdfLayoutType = exports.PdfLayoutType || (exports.PdfLayoutType = {}));
    var PdfLayoutBreakType;
    (function (PdfLayoutBreakType) {
        PdfLayoutBreakType[PdfLayoutBreakType["FitPage"] = 0] = "FitPage";
        PdfLayoutBreakType[PdfLayoutBreakType["FitElement"] = 1] = "FitElement";
        PdfLayoutBreakType[PdfLayoutBreakType["FitColumnsToPage"] = 2] = "FitColumnsToPage";
    })(PdfLayoutBreakType = exports.PdfLayoutBreakType || (exports.PdfLayoutBreakType = {}));
    var PathPointType;
    (function (PathPointType) {
        PathPointType[PathPointType["Start"] = 0] = "Start";
        PathPointType[PathPointType["Line"] = 1] = "Line";
        PathPointType[PathPointType["Bezier3"] = 3] = "Bezier3";
        PathPointType[PathPointType["Bezier"] = 3] = "Bezier";
        PathPointType[PathPointType["PathTypeMask"] = 7] = "PathTypeMask";
        PathPointType[PathPointType["DashMode"] = 16] = "DashMode";
        PathPointType[PathPointType["PathMarker"] = 32] = "PathMarker";
        PathPointType[PathPointType["CloseSubpath"] = 128] = "CloseSubpath";
    })(PathPointType = exports.PathPointType || (exports.PathPointType = {}));
});