@syncfusion/ej2-pdf-export 25.2.3 → 26.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +3 -2
- package/dist/ej2-pdf-export.umd.min.js +2 -2
- package/dist/ej2-pdf-export.umd.min.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es2015.js +79 -72
- package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
- package/dist/es6/ej2-pdf-export.es5.js +169 -232
- package/dist/es6/ej2-pdf-export.es5.js.map +1 -1
- package/dist/global/ej2-pdf-export.min.js +2 -2
- package/dist/global/ej2-pdf-export.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/implementation/actions/action.d.ts +50 -0
- package/dist/ts/implementation/actions/action.ts +76 -0
- package/dist/ts/implementation/actions/index.d.ts +6 -0
- package/dist/ts/implementation/actions/index.ts +6 -0
- package/dist/ts/implementation/actions/uri-action.d.ts +33 -0
- package/dist/ts/implementation/actions/uri-action.ts +52 -0
- package/dist/ts/implementation/annotations/action-link-annotation.d.ts +30 -0
- package/dist/ts/implementation/annotations/action-link-annotation.ts +43 -0
- package/dist/ts/implementation/annotations/annotation-collection.d.ts +77 -0
- package/dist/ts/implementation/annotations/annotation-collection.ts +159 -0
- package/dist/ts/implementation/annotations/annotation.d.ts +152 -0
- package/dist/ts/implementation/annotations/annotation.ts +241 -0
- package/dist/ts/implementation/annotations/document-link-annotation.d.ts +89 -0
- package/dist/ts/implementation/annotations/document-link-annotation.ts +118 -0
- package/dist/ts/implementation/annotations/index.d.ts +11 -0
- package/dist/ts/implementation/annotations/index.ts +11 -0
- package/dist/ts/implementation/annotations/link-annotation.d.ts +23 -0
- package/dist/ts/implementation/annotations/link-annotation.ts +32 -0
- package/dist/ts/implementation/annotations/pdf-text-web-link.d.ts +118 -0
- package/dist/ts/implementation/annotations/pdf-text-web-link.ts +265 -0
- package/dist/ts/implementation/annotations/uri-annotation.d.ts +48 -0
- package/dist/ts/implementation/annotations/uri-annotation.ts +86 -0
- package/dist/ts/implementation/collections/dictionary.d.ts +76 -0
- package/dist/ts/implementation/collections/dictionary.ts +150 -0
- package/dist/ts/implementation/collections/index.d.ts +7 -0
- package/dist/ts/implementation/collections/index.ts +7 -0
- package/dist/ts/implementation/collections/object-object-pair/dictionary.d.ts +62 -0
- package/dist/ts/implementation/collections/object-object-pair/dictionary.ts +125 -0
- package/dist/ts/implementation/collections/object-object-pair/index.d.ts +5 -0
- package/dist/ts/implementation/collections/object-object-pair/index.ts +5 -0
- package/dist/ts/implementation/collections/utils.d.ts +27 -0
- package/dist/ts/implementation/collections/utils.ts +38 -0
- package/dist/ts/implementation/document/automatic-fields/automatic-field-info-collection.d.ts +31 -0
- package/dist/ts/implementation/document/automatic-fields/automatic-field-info-collection.ts +39 -0
- package/dist/ts/implementation/document/automatic-fields/automatic-field-info.d.ts +67 -0
- package/dist/ts/implementation/document/automatic-fields/automatic-field-info.ts +108 -0
- package/dist/ts/implementation/document/automatic-fields/automatic-field.d.ts +41 -0
- package/dist/ts/implementation/document/automatic-fields/automatic-field.ts +127 -0
- package/dist/ts/implementation/document/automatic-fields/composite-field.d.ts +46 -0
- package/dist/ts/implementation/document/automatic-fields/composite-field.ts +76 -0
- package/dist/ts/implementation/document/automatic-fields/index.d.ts +11 -0
- package/dist/ts/implementation/document/automatic-fields/index.ts +11 -0
- package/dist/ts/implementation/document/automatic-fields/multiple-value-field.d.ts +18 -0
- package/dist/ts/implementation/document/automatic-fields/multiple-value-field.ts +37 -0
- package/dist/ts/implementation/document/automatic-fields/page-count-field.d.ts +44 -0
- package/dist/ts/implementation/document/automatic-fields/page-count-field.ts +75 -0
- package/dist/ts/implementation/document/automatic-fields/pdf-numbers-convertor.d.ts +53 -0
- package/dist/ts/implementation/document/automatic-fields/pdf-numbers-convertor.ts +157 -0
- package/dist/ts/implementation/document/automatic-fields/pdf-page-number-field.d.ts +51 -0
- package/dist/ts/implementation/document/automatic-fields/pdf-page-number-field.ts +82 -0
- package/dist/ts/implementation/document/automatic-fields/pdf-template-value-pair.d.ts +38 -0
- package/dist/ts/implementation/document/automatic-fields/pdf-template-value-pair.ts +60 -0
- package/dist/ts/implementation/document/automatic-fields/single-value-field.d.ts +15 -0
- package/dist/ts/implementation/document/automatic-fields/single-value-field.ts +48 -0
- package/dist/ts/implementation/document/index.d.ts +16 -0
- package/dist/ts/implementation/document/index.ts +16 -0
- package/dist/ts/implementation/document/pdf-catalog.d.ts +39 -0
- package/dist/ts/implementation/document/pdf-catalog.ts +65 -0
- package/dist/ts/implementation/document/pdf-document-base.d.ts +132 -0
- package/dist/ts/implementation/document/pdf-document-base.ts +180 -0
- package/dist/ts/implementation/document/pdf-document-template.d.ts +166 -0
- package/dist/ts/implementation/document/pdf-document-template.ts +310 -0
- package/dist/ts/implementation/document/pdf-document.d.ts +221 -0
- package/dist/ts/implementation/document/pdf-document.ts +342 -0
- package/dist/ts/implementation/document/pdf-viewer-preferences.d.ts +467 -0
- package/dist/ts/implementation/document/pdf-viewer-preferences.ts +578 -0
- package/dist/ts/implementation/drawing/index.d.ts +5 -0
- package/dist/ts/implementation/drawing/index.ts +5 -0
- package/dist/ts/implementation/drawing/pdf-drawing.d.ts +141 -0
- package/dist/ts/implementation/drawing/pdf-drawing.ts +218 -0
- package/dist/ts/implementation/general/enum.d.ts +21 -0
- package/dist/ts/implementation/general/enum.ts +21 -0
- package/dist/ts/implementation/general/functions/index.d.ts +6 -0
- package/dist/ts/implementation/general/functions/index.ts +6 -0
- package/dist/ts/implementation/general/functions/pdf-function.d.ts +44 -0
- package/dist/ts/implementation/general/functions/pdf-function.ts +66 -0
- package/dist/ts/implementation/general/functions/pdf-sampled-function.d.ts +25 -0
- package/dist/ts/implementation/general/functions/pdf-sampled-function.ts +63 -0
- package/dist/ts/implementation/general/index.d.ts +9 -0
- package/dist/ts/implementation/general/index.ts +9 -0
- package/dist/ts/implementation/general/pdf-cache-collection.d.ts +42 -0
- package/dist/ts/implementation/general/pdf-cache-collection.ts +97 -0
- package/dist/ts/implementation/general/pdf-collection.d.ts +26 -0
- package/dist/ts/implementation/general/pdf-collection.ts +41 -0
- package/dist/ts/implementation/general/pdf-destination.d.ts +103 -0
- package/dist/ts/implementation/general/pdf-destination.ts +170 -0
- package/dist/ts/implementation/graphics/brushes/enum.d.ts +236 -0
- package/dist/ts/implementation/graphics/brushes/enum.ts +237 -0
- package/dist/ts/implementation/graphics/brushes/index.d.ts +13 -0
- package/dist/ts/implementation/graphics/brushes/index.ts +13 -0
- package/dist/ts/implementation/graphics/brushes/pdf-blend.d.ts +105 -0
- package/dist/ts/implementation/graphics/brushes/pdf-blend.ts +294 -0
- package/dist/ts/implementation/graphics/brushes/pdf-brush.d.ts +57 -0
- package/dist/ts/implementation/graphics/brushes/pdf-brush.ts +68 -0
- package/dist/ts/implementation/graphics/brushes/pdf-brushes.d.ts +726 -0
- package/dist/ts/implementation/graphics/brushes/pdf-brushes.ts +2438 -0
- package/dist/ts/implementation/graphics/brushes/pdf-color-blend.d.ts +113 -0
- package/dist/ts/implementation/graphics/brushes/pdf-color-blend.ts +295 -0
- package/dist/ts/implementation/graphics/brushes/pdf-gradient-brush.d.ts +155 -0
- package/dist/ts/implementation/graphics/brushes/pdf-gradient-brush.ts +311 -0
- package/dist/ts/implementation/graphics/brushes/pdf-linear-gradient-brush.d.ts +147 -0
- package/dist/ts/implementation/graphics/brushes/pdf-linear-gradient-brush.ts +406 -0
- package/dist/ts/implementation/graphics/brushes/pdf-radial-gradient-brush.d.ts +122 -0
- package/dist/ts/implementation/graphics/brushes/pdf-radial-gradient-brush.ts +290 -0
- package/dist/ts/implementation/graphics/brushes/pdf-solid-brush.d.ts +77 -0
- package/dist/ts/implementation/graphics/brushes/pdf-solid-brush.ts +107 -0
- package/dist/ts/implementation/graphics/brushes/pdf-tiling-brush.d.ts +161 -0
- package/dist/ts/implementation/graphics/brushes/pdf-tiling-brush.ts +304 -0
- package/dist/ts/implementation/graphics/constants.d.ts +31 -0
- package/dist/ts/implementation/graphics/constants.ts +31 -0
- package/dist/ts/implementation/graphics/enum.d.ts +413 -0
- package/dist/ts/implementation/graphics/enum.ts +413 -0
- package/dist/ts/implementation/graphics/figures/arc.d.ts +87 -0
- package/dist/ts/implementation/graphics/figures/arc.ts +133 -0
- package/dist/ts/implementation/graphics/figures/base/draw-element.d.ts +30 -0
- package/dist/ts/implementation/graphics/figures/base/draw-element.ts +59 -0
- package/dist/ts/implementation/graphics/figures/base/element-layouter.d.ts +161 -0
- package/dist/ts/implementation/graphics/figures/base/element-layouter.ts +260 -0
- package/dist/ts/implementation/graphics/figures/base/fill-element.d.ts +46 -0
- package/dist/ts/implementation/graphics/figures/base/fill-element.ts +72 -0
- package/dist/ts/implementation/graphics/figures/base/graphics-element.d.ts +16 -0
- package/dist/ts/implementation/graphics/figures/base/graphics-element.ts +34 -0
- package/dist/ts/implementation/graphics/figures/base/index.d.ts +9 -0
- package/dist/ts/implementation/graphics/figures/base/index.ts +9 -0
- package/dist/ts/implementation/graphics/figures/base/pdf-shape-element.d.ts +40 -0
- package/dist/ts/implementation/graphics/figures/base/pdf-shape-element.ts +69 -0
- package/dist/ts/implementation/graphics/figures/base/shape-layouter.d.ts +131 -0
- package/dist/ts/implementation/graphics/figures/base/shape-layouter.ts +276 -0
- package/dist/ts/implementation/graphics/figures/base/text-layouter.d.ts +107 -0
- package/dist/ts/implementation/graphics/figures/base/text-layouter.ts +205 -0
- package/dist/ts/implementation/graphics/figures/ellipse-part.d.ts +48 -0
- package/dist/ts/implementation/graphics/figures/ellipse-part.ts +76 -0
- package/dist/ts/implementation/graphics/figures/enum.d.ts +79 -0
- package/dist/ts/implementation/graphics/figures/enum.ts +80 -0
- package/dist/ts/implementation/graphics/figures/index.d.ts +13 -0
- package/dist/ts/implementation/graphics/figures/index.ts +13 -0
- package/dist/ts/implementation/graphics/figures/layout-element.d.ts +73 -0
- package/dist/ts/implementation/graphics/figures/layout-element.ts +132 -0
- package/dist/ts/implementation/graphics/figures/path.d.ts +319 -0
- package/dist/ts/implementation/graphics/figures/path.ts +646 -0
- package/dist/ts/implementation/graphics/figures/pdf-template.d.ts +113 -0
- package/dist/ts/implementation/graphics/figures/pdf-template.ts +205 -0
- package/dist/ts/implementation/graphics/figures/rectangle-area.d.ts +64 -0
- package/dist/ts/implementation/graphics/figures/rectangle-area.ts +108 -0
- package/dist/ts/implementation/graphics/figures/text-element.d.ts +213 -0
- package/dist/ts/implementation/graphics/figures/text-element.ts +445 -0
- package/dist/ts/implementation/graphics/fonts/enum.d.ts +385 -0
- package/dist/ts/implementation/graphics/fonts/enum.ts +385 -0
- package/dist/ts/implementation/graphics/fonts/index.d.ts +16 -0
- package/dist/ts/implementation/graphics/fonts/index.ts +16 -0
- package/dist/ts/implementation/graphics/fonts/pdf-font-metrics.d.ts +164 -0
- package/dist/ts/implementation/graphics/fonts/pdf-font-metrics.ts +248 -0
- package/dist/ts/implementation/graphics/fonts/pdf-font.d.ts +187 -0
- package/dist/ts/implementation/graphics/fonts/pdf-font.ts +316 -0
- package/dist/ts/implementation/graphics/fonts/pdf-standard-font-metrics-factory.d.ts +301 -0
- package/dist/ts/implementation/graphics/fonts/pdf-standard-font-metrics-factory.ts +606 -0
- package/dist/ts/implementation/graphics/fonts/pdf-standard-font.d.ts +143 -0
- package/dist/ts/implementation/graphics/fonts/pdf-standard-font.ts +243 -0
- package/dist/ts/implementation/graphics/fonts/pdf-string-format.d.ts +321 -0
- package/dist/ts/implementation/graphics/fonts/pdf-string-format.ts +474 -0
- package/dist/ts/implementation/graphics/fonts/pdf-true-type-font.d.ts +49 -0
- package/dist/ts/implementation/graphics/fonts/pdf-true-type-font.ts +165 -0
- package/dist/ts/implementation/graphics/fonts/rtl/index.d.ts +6 -0
- package/dist/ts/implementation/graphics/fonts/rtl/index.ts +6 -0
- package/dist/ts/implementation/graphics/fonts/rtl/rtl-bidirectional.d.ts +62 -0
- package/dist/ts/implementation/graphics/fonts/rtl/rtl-bidirectional.ts +958 -0
- package/dist/ts/implementation/graphics/fonts/rtl/rtl-text-shape.d.ts +68 -0
- package/dist/ts/implementation/graphics/fonts/rtl/rtl-text-shape.ts +374 -0
- package/dist/ts/implementation/graphics/fonts/rtl-renderer.d.ts +23 -0
- package/dist/ts/implementation/graphics/fonts/rtl-renderer.ts +255 -0
- package/dist/ts/implementation/graphics/fonts/string-layouter.d.ts +254 -0
- package/dist/ts/implementation/graphics/fonts/string-layouter.ts +617 -0
- package/dist/ts/implementation/graphics/fonts/string-tokenizer.d.ts +109 -0
- package/dist/ts/implementation/graphics/fonts/string-tokenizer.ts +275 -0
- package/dist/ts/implementation/graphics/fonts/ttf-OS2-Table.d.ts +204 -0
- package/dist/ts/implementation/graphics/fonts/ttf-OS2-Table.ts +206 -0
- package/dist/ts/implementation/graphics/fonts/ttf-apple-cmap-sub-table.d.ts +17 -0
- package/dist/ts/implementation/graphics/fonts/ttf-apple-cmap-sub-table.ts +18 -0
- package/dist/ts/implementation/graphics/fonts/ttf-cmap-sub-table.d.ts +17 -0
- package/dist/ts/implementation/graphics/fonts/ttf-cmap-sub-table.ts +18 -0
- package/dist/ts/implementation/graphics/fonts/ttf-cmap-table.d.ts +13 -0
- package/dist/ts/implementation/graphics/fonts/ttf-cmap-table.ts +14 -0
- package/dist/ts/implementation/graphics/fonts/ttf-glyph-header.d.ts +25 -0
- package/dist/ts/implementation/graphics/fonts/ttf-glyph-header.ts +26 -0
- package/dist/ts/implementation/graphics/fonts/ttf-glyph-info.d.ts +25 -0
- package/dist/ts/implementation/graphics/fonts/ttf-glyph-info.ts +35 -0
- package/dist/ts/implementation/graphics/fonts/ttf-head-table.d.ts +94 -0
- package/dist/ts/implementation/graphics/fonts/ttf-head-table.ts +94 -0
- package/dist/ts/implementation/graphics/fonts/ttf-horizontal-header-table.d.ts +55 -0
- package/dist/ts/implementation/graphics/fonts/ttf-horizontal-header-table.ts +56 -0
- package/dist/ts/implementation/graphics/fonts/ttf-loca-table.d.ts +9 -0
- package/dist/ts/implementation/graphics/fonts/ttf-loca-table.ts +10 -0
- package/dist/ts/implementation/graphics/fonts/ttf-long-hor-metric.d.ts +13 -0
- package/dist/ts/implementation/graphics/fonts/ttf-long-hor-metric.ts +14 -0
- package/dist/ts/implementation/graphics/fonts/ttf-metrics.d.ts +101 -0
- package/dist/ts/implementation/graphics/fonts/ttf-metrics.ts +106 -0
- package/dist/ts/implementation/graphics/fonts/ttf-microsoft-cmap-sub-table.d.ts +57 -0
- package/dist/ts/implementation/graphics/fonts/ttf-microsoft-cmap-sub-table.ts +58 -0
- package/dist/ts/implementation/graphics/fonts/ttf-name-record.d.ts +33 -0
- package/dist/ts/implementation/graphics/fonts/ttf-name-record.ts +33 -0
- package/dist/ts/implementation/graphics/fonts/ttf-name-table.d.ts +22 -0
- package/dist/ts/implementation/graphics/fonts/ttf-name-table.ts +22 -0
- package/dist/ts/implementation/graphics/fonts/ttf-post-table.d.ts +41 -0
- package/dist/ts/implementation/graphics/fonts/ttf-post-table.ts +42 -0
- package/dist/ts/implementation/graphics/fonts/ttf-reader.d.ts +225 -0
- package/dist/ts/implementation/graphics/fonts/ttf-reader.ts +1254 -0
- package/dist/ts/implementation/graphics/fonts/ttf-table-info.d.ts +22 -0
- package/dist/ts/implementation/graphics/fonts/ttf-table-info.ts +26 -0
- package/dist/ts/implementation/graphics/fonts/ttf-trimmed-cmap-sub-table.d.ts +25 -0
- package/dist/ts/implementation/graphics/fonts/ttf-trimmed-cmap-sub-table.ts +26 -0
- package/dist/ts/implementation/graphics/fonts/unicode-true-type-font.d.ts +213 -0
- package/dist/ts/implementation/graphics/fonts/unicode-true-type-font.ts +577 -0
- package/dist/ts/implementation/graphics/images/byte-array.d.ts +74 -0
- package/dist/ts/implementation/graphics/images/byte-array.ts +137 -0
- package/dist/ts/implementation/graphics/images/image-decoder.d.ts +274 -0
- package/dist/ts/implementation/graphics/images/image-decoder.ts +439 -0
- package/dist/ts/implementation/graphics/images/index.d.ts +8 -0
- package/dist/ts/implementation/graphics/images/index.ts +8 -0
- package/dist/ts/implementation/graphics/images/pdf-bitmap.d.ts +90 -0
- package/dist/ts/implementation/graphics/images/pdf-bitmap.ts +110 -0
- package/dist/ts/implementation/graphics/images/pdf-image.d.ts +88 -0
- package/dist/ts/implementation/graphics/images/pdf-image.ts +132 -0
- package/dist/ts/implementation/graphics/index.d.ts +35 -0
- package/dist/ts/implementation/graphics/index.ts +46 -0
- package/dist/ts/implementation/graphics/pdf-color.d.ts +206 -0
- package/dist/ts/implementation/graphics/pdf-color.ts +478 -0
- package/dist/ts/implementation/graphics/pdf-graphics.d.ts +1210 -0
- package/dist/ts/implementation/graphics/pdf-graphics.ts +2554 -0
- package/dist/ts/implementation/graphics/pdf-margins.d.ts +82 -0
- package/dist/ts/implementation/graphics/pdf-margins.ts +124 -0
- package/dist/ts/implementation/graphics/pdf-pen.d.ts +237 -0
- package/dist/ts/implementation/graphics/pdf-pen.ts +370 -0
- package/dist/ts/implementation/graphics/pdf-resources.d.ts +122 -0
- package/dist/ts/implementation/graphics/pdf-resources.ts +300 -0
- package/dist/ts/implementation/graphics/pdf-transformation-matrix.d.ts +143 -0
- package/dist/ts/implementation/graphics/pdf-transformation-matrix.ts +246 -0
- package/dist/ts/implementation/graphics/pdf-transparency.d.ts +34 -0
- package/dist/ts/implementation/graphics/pdf-transparency.ts +93 -0
- package/dist/ts/implementation/graphics/unit-convertor.d.ts +72 -0
- package/dist/ts/implementation/graphics/unit-convertor.ts +96 -0
- package/dist/ts/implementation/index.d.ts +103 -0
- package/dist/ts/implementation/index.ts +103 -0
- package/dist/ts/implementation/input-output/big-endian-writer.d.ts +59 -0
- package/dist/ts/implementation/input-output/big-endian-writer.ts +121 -0
- package/dist/ts/implementation/input-output/cross-table.d.ts +21 -0
- package/dist/ts/implementation/input-output/cross-table.ts +21 -0
- package/dist/ts/implementation/input-output/enum.d.ts +16 -0
- package/dist/ts/implementation/input-output/enum.ts +16 -0
- package/dist/ts/implementation/input-output/index.d.ts +12 -0
- package/dist/ts/implementation/input-output/index.ts +12 -0
- package/dist/ts/implementation/input-output/pdf-cross-table.d.ts +249 -0
- package/dist/ts/implementation/input-output/pdf-cross-table.ts +524 -0
- package/dist/ts/implementation/input-output/pdf-dictionary-properties.d.ts +568 -0
- package/dist/ts/implementation/input-output/pdf-dictionary-properties.ts +571 -0
- package/dist/ts/implementation/input-output/pdf-main-object-collection.d.ts +120 -0
- package/dist/ts/implementation/input-output/pdf-main-object-collection.ts +194 -0
- package/dist/ts/implementation/input-output/pdf-operators.d.ts +361 -0
- package/dist/ts/implementation/input-output/pdf-operators.ts +363 -0
- package/dist/ts/implementation/input-output/pdf-stream-writer.d.ts +311 -0
- package/dist/ts/implementation/input-output/pdf-stream-writer.ts +681 -0
- package/dist/ts/implementation/input-output/pdf-writer.d.ts +68 -0
- package/dist/ts/implementation/input-output/pdf-writer.ts +88 -0
- package/dist/ts/implementation/pages/enum.d.ts +201 -0
- package/dist/ts/implementation/pages/enum.ts +201 -0
- package/dist/ts/implementation/pages/index.d.ts +17 -0
- package/dist/ts/implementation/pages/index.ts +17 -0
- package/dist/ts/implementation/pages/page-added-event-arguments.d.ts +30 -0
- package/dist/ts/implementation/pages/page-added-event-arguments.ts +39 -0
- package/dist/ts/implementation/pages/pdf-document-page-collection.d.ts +86 -0
- package/dist/ts/implementation/pages/pdf-document-page-collection.ts +180 -0
- package/dist/ts/implementation/pages/pdf-page-base.d.ts +121 -0
- package/dist/ts/implementation/pages/pdf-page-base.ts +181 -0
- package/dist/ts/implementation/pages/pdf-page-layer-collection.d.ts +99 -0
- package/dist/ts/implementation/pages/pdf-page-layer-collection.ts +348 -0
- package/dist/ts/implementation/pages/pdf-page-layer.d.ts +160 -0
- package/dist/ts/implementation/pages/pdf-page-layer.ts +271 -0
- package/dist/ts/implementation/pages/pdf-page-settings.d.ts +111 -0
- package/dist/ts/implementation/pages/pdf-page-settings.ts +192 -0
- package/dist/ts/implementation/pages/pdf-page-size.d.ts +159 -0
- package/dist/ts/implementation/pages/pdf-page-size.ts +162 -0
- package/dist/ts/implementation/pages/pdf-page-template-element.d.ts +240 -0
- package/dist/ts/implementation/pages/pdf-page-template-element.ts +663 -0
- package/dist/ts/implementation/pages/pdf-page.d.ts +153 -0
- package/dist/ts/implementation/pages/pdf-page.ts +235 -0
- package/dist/ts/implementation/pages/pdf-section-collection.d.ts +109 -0
- package/dist/ts/implementation/pages/pdf-section-collection.ts +187 -0
- package/dist/ts/implementation/pages/pdf-section-page-collection.d.ts +41 -0
- package/dist/ts/implementation/pages/pdf-section-page-collection.ts +61 -0
- package/dist/ts/implementation/pages/pdf-section-templates.d.ts +64 -0
- package/dist/ts/implementation/pages/pdf-section-templates.ts +96 -0
- package/dist/ts/implementation/pages/pdf-section.d.ts +327 -0
- package/dist/ts/implementation/pages/pdf-section.ts +644 -0
- package/dist/ts/implementation/primitives/index.d.ts +12 -0
- package/dist/ts/implementation/primitives/index.ts +12 -0
- package/dist/ts/implementation/primitives/pdf-array.d.ts +192 -0
- package/dist/ts/implementation/primitives/pdf-array.ts +386 -0
- package/dist/ts/implementation/primitives/pdf-boolean.d.ts +84 -0
- package/dist/ts/implementation/primitives/pdf-boolean.ts +119 -0
- package/dist/ts/implementation/primitives/pdf-dictionary.d.ts +362 -0
- package/dist/ts/implementation/primitives/pdf-dictionary.ts +513 -0
- package/dist/ts/implementation/primitives/pdf-name.d.ts +121 -0
- package/dist/ts/implementation/primitives/pdf-name.ts +218 -0
- package/dist/ts/implementation/primitives/pdf-number.d.ts +104 -0
- package/dist/ts/implementation/primitives/pdf-number.ts +165 -0
- package/dist/ts/implementation/primitives/pdf-reference.d.ts +223 -0
- package/dist/ts/implementation/primitives/pdf-reference.ts +430 -0
- package/dist/ts/implementation/primitives/pdf-stream.d.ts +161 -0
- package/dist/ts/implementation/primitives/pdf-stream.ts +306 -0
- package/dist/ts/implementation/primitives/pdf-string.d.ts +235 -0
- package/dist/ts/implementation/primitives/pdf-string.ts +397 -0
- package/dist/ts/implementation/structured-elements/grid/index.d.ts +4 -0
- package/dist/ts/implementation/structured-elements/grid/index.ts +10 -0
- package/dist/ts/implementation/structured-elements/grid/layout/grid-layouter.d.ts +597 -0
- package/dist/ts/implementation/structured-elements/grid/layout/grid-layouter.ts +2029 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid-cell.d.ts +288 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid-cell.ts +1194 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid-column.d.ts +108 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid-column.ts +206 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid-row.d.ts +261 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid-row.ts +470 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid.d.ts +292 -0
- package/dist/ts/implementation/structured-elements/grid/pdf-grid.ts +853 -0
- package/dist/ts/implementation/structured-elements/grid/styles/index.d.ts +5 -0
- package/dist/ts/implementation/structured-elements/grid/styles/index.ts +5 -0
- package/dist/ts/implementation/structured-elements/grid/styles/pdf-borders.d.ts +146 -0
- package/dist/ts/implementation/structured-elements/grid/styles/pdf-borders.ts +240 -0
- package/dist/ts/implementation/structured-elements/grid/styles/style.d.ts +272 -0
- package/dist/ts/implementation/structured-elements/grid/styles/style.ts +424 -0
- package/dist/ts/implementation/structured-elements/index.d.ts +4 -0
- package/dist/ts/implementation/structured-elements/index.ts +10 -0
- package/dist/ts/implementation/structured-elements/tables/light-tables/enum.d.ts +16 -0
- package/dist/ts/implementation/structured-elements/tables/light-tables/enum.ts +16 -0
- package/dist/ts/index.d.ts +116 -0
- package/dist/ts/index.ts +116 -0
- package/dist/ts/interfaces/i-pdf-cache.d.ts +23 -0
- package/dist/ts/interfaces/i-pdf-cache.ts +23 -0
- package/dist/ts/interfaces/i-pdf-changable.d.ts +17 -0
- package/dist/ts/interfaces/i-pdf-changable.ts +17 -0
- package/dist/ts/interfaces/i-pdf-clonable.d.ts +12 -0
- package/dist/ts/interfaces/i-pdf-clonable.ts +12 -0
- package/dist/ts/interfaces/i-pdf-primitives.d.ts +45 -0
- package/dist/ts/interfaces/i-pdf-primitives.ts +45 -0
- package/dist/ts/interfaces/i-pdf-true-type-font.d.ts +18 -0
- package/dist/ts/interfaces/i-pdf-true-type-font.ts +48 -0
- package/dist/ts/interfaces/i-pdf-wrapper.d.ts +13 -0
- package/dist/ts/interfaces/i-pdf-wrapper.ts +13 -0
- package/dist/ts/interfaces/i-pdf-writer.d.ts +29 -0
- package/dist/ts/interfaces/i-pdf-writer.ts +29 -0
- package/dist/ts/interfaces/index.d.ts +10 -0
- package/dist/ts/interfaces/index.ts +10 -0
- package/interfaces.js +0 -1
- package/package.json +7 -7
- package/src/interfaces/i-pdf-cache.js +0 -1
- package/src/interfaces/i-pdf-changable.js +0 -1
- package/src/interfaces/i-pdf-clonable.js +0 -1
- package/src/interfaces/i-pdf-primitives.js +0 -1
- package/src/interfaces/i-pdf-true-type-font.js +0 -1
- package/src/interfaces/i-pdf-wrapper.js +0 -1
- package/src/interfaces/i-pdf-writer.js +0 -1
- package/src/interfaces/index.js +0 -1
- package/CHANGELOG.md +0 -57
- package/dist/ej2-pdf-export.min.js +0 -10
|
@@ -338,13 +338,7 @@ var PdfName = /** @__PURE__ @class */ (function () {
|
|
|
338
338
|
* @private
|
|
339
339
|
*/
|
|
340
340
|
PdfName.prototype.normalizeValue = function (value, c) {
|
|
341
|
-
//
|
|
342
|
-
// let str : string = value;
|
|
343
|
-
// for (let i : number = 0; i < PdfName.replacements.length; i++) {
|
|
344
|
-
// str = this.normalizeValue(str, c);
|
|
345
|
-
// }
|
|
346
|
-
// return str;
|
|
347
|
-
// } else {
|
|
341
|
+
//return value.replace(c.toString(),String.format(strFormat,c));
|
|
348
342
|
return value;
|
|
349
343
|
// }
|
|
350
344
|
};
|
|
@@ -3235,6 +3229,49 @@ var PdfReferenceHolder = /** @__PURE__ @class */ (function () {
|
|
|
3235
3229
|
* @private
|
|
3236
3230
|
*/
|
|
3237
3231
|
PdfReferenceHolder.prototype.clone = function (crossTable) {
|
|
3232
|
+
// Restricts addition of same object multiple time.
|
|
3233
|
+
/* if (this.Reference != null && this.crossTable != null && this.crossTable.PageCorrespondance.containsKey(this.Reference)) {
|
|
3234
|
+
refHolder = new PdfReferenceHolder(this.crossTable.PageCorrespondance.getValue(this.Reference) as PdfReference, crossTable);
|
|
3235
|
+
return refHolder;
|
|
3236
|
+
}
|
|
3237
|
+
if (Object instanceof PdfNumber) {
|
|
3238
|
+
return new PdfNumber((Object as PdfNumber).IntValue);
|
|
3239
|
+
}
|
|
3240
|
+
*/
|
|
3241
|
+
// if (Object instanceof PdfDictionary) {
|
|
3242
|
+
// // Meaning the referenced page is not available for import.
|
|
3243
|
+
// let type : PdfName = new PdfName(this.dictionaryProperties.type);
|
|
3244
|
+
// let dict : PdfDictionary = Object as PdfDictionary;
|
|
3245
|
+
// if (dict.ContainsKey(type)) {
|
|
3246
|
+
// let pageName : PdfName = dict.Items.getValue(type.Value) as PdfName;
|
|
3247
|
+
// if (pageName !== null) {
|
|
3248
|
+
// if (pageName.Value === 'Page') {
|
|
3249
|
+
// return new PdfNull();
|
|
3250
|
+
// }
|
|
3251
|
+
// }
|
|
3252
|
+
// }
|
|
3253
|
+
// }
|
|
3254
|
+
/* if (Object instanceof PdfName) {
|
|
3255
|
+
return new PdfName ((Object as PdfName ).Value);
|
|
3256
|
+
}
|
|
3257
|
+
*/
|
|
3258
|
+
// Resolves circular references.
|
|
3259
|
+
// if (crossTable.PrevReference !== null && (crossTable.PrevReference.indexOf(this.Reference) !== -1)) {
|
|
3260
|
+
// let obj : IPdfPrimitive = this.crossTable.GetObject(this.Reference).ClonedObject;
|
|
3261
|
+
// if (obj !== null) {
|
|
3262
|
+
// reference = crossTable.GetReference(obj);
|
|
3263
|
+
// return new PdfReferenceHolder(reference, crossTable);
|
|
3264
|
+
// } else {
|
|
3265
|
+
// return new PdfNull();
|
|
3266
|
+
// }
|
|
3267
|
+
// }
|
|
3268
|
+
/*if (this.Reference !== null) {
|
|
3269
|
+
crossTable.PrevReference.push(this.Reference);
|
|
3270
|
+
}
|
|
3271
|
+
reference = crossTable.GetReference(temp);
|
|
3272
|
+
refHolder = new PdfReferenceHolder(reference, crossTable);
|
|
3273
|
+
return refHolder;
|
|
3274
|
+
*/
|
|
3238
3275
|
return null;
|
|
3239
3276
|
};
|
|
3240
3277
|
return PdfReferenceHolder;
|
|
@@ -4459,7 +4496,7 @@ var PdfBrush = /** @__PURE__ @class */ (function () {
|
|
|
4459
4496
|
return PdfBrush;
|
|
4460
4497
|
}());
|
|
4461
4498
|
|
|
4462
|
-
var __extends$
|
|
4499
|
+
var __extends$2 = (undefined && undefined.__extends) || (function () {
|
|
4463
4500
|
var extendStatics = function (d, b) {
|
|
4464
4501
|
extendStatics = Object.setPrototypeOf ||
|
|
4465
4502
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -4492,7 +4529,7 @@ var __extends$4 = (undefined && undefined.__extends) || (function () {
|
|
|
4492
4529
|
* ```
|
|
4493
4530
|
*/
|
|
4494
4531
|
var PdfSolidBrush = /** @__PURE__ @class */ (function (_super) {
|
|
4495
|
-
__extends$
|
|
4532
|
+
__extends$2(PdfSolidBrush, _super);
|
|
4496
4533
|
//Constructors
|
|
4497
4534
|
/**
|
|
4498
4535
|
* Initializes a new instance of the `PdfSolidBrush` class.
|
|
@@ -5856,7 +5893,7 @@ var PdfStringLayouter = /** @__PURE__ @class */ (function () {
|
|
|
5856
5893
|
}
|
|
5857
5894
|
while (word != null) {
|
|
5858
5895
|
curLine = curLine + word;
|
|
5859
|
-
var curLineWidth = this.getLineWidth(curLine.toString()) + curIndent
|
|
5896
|
+
var curLineWidth = this.getLineWidth(curLine.toString()) + curIndent /*)*/;
|
|
5860
5897
|
if (curLine.toString() === ' ') {
|
|
5861
5898
|
curLine = '';
|
|
5862
5899
|
curLineWidth = 0;
|
|
@@ -6708,7 +6745,6 @@ var PdfMainObjectCollection = /** @__PURE__ @class */ (function () {
|
|
|
6708
6745
|
*/
|
|
6709
6746
|
PdfMainObjectCollection.prototype.trySetReference = function (obj, reference, found) {
|
|
6710
6747
|
var result = true;
|
|
6711
|
-
found = true;
|
|
6712
6748
|
this.index = this.lookFor(obj);
|
|
6713
6749
|
var oi = this.objectCollections[this.index];
|
|
6714
6750
|
oi.setReference(reference);
|
|
@@ -7662,7 +7698,7 @@ var PageScalingMode;
|
|
|
7662
7698
|
PageScalingMode[PageScalingMode["None"] = 1] = "None";
|
|
7663
7699
|
})(PageScalingMode || (PageScalingMode = {}));
|
|
7664
7700
|
|
|
7665
|
-
var __extends$
|
|
7701
|
+
var __extends$3 = (undefined && undefined.__extends) || (function () {
|
|
7666
7702
|
var extendStatics = function (d, b) {
|
|
7667
7703
|
extendStatics = Object.setPrototypeOf ||
|
|
7668
7704
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -7675,15 +7711,12 @@ var __extends$7 = (undefined && undefined.__extends) || (function () {
|
|
|
7675
7711
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
7676
7712
|
};
|
|
7677
7713
|
})();
|
|
7678
|
-
/**
|
|
7679
|
-
* PdfCatalog.ts class for EJ2-PDF
|
|
7680
|
-
*/
|
|
7681
7714
|
/**
|
|
7682
7715
|
* `PdfCatalog` class represents internal catalog of the Pdf document.
|
|
7683
7716
|
* @private
|
|
7684
7717
|
*/
|
|
7685
7718
|
var PdfCatalog = /** @__PURE__ @class */ (function (_super) {
|
|
7686
|
-
__extends$
|
|
7719
|
+
__extends$3(PdfCatalog, _super);
|
|
7687
7720
|
//constructor
|
|
7688
7721
|
/**
|
|
7689
7722
|
* Initializes a new instance of the `PdfCatalog` class.
|
|
@@ -10359,7 +10392,7 @@ var PdfGraphicsElement = /** @__PURE__ @class */ (function () {
|
|
|
10359
10392
|
return PdfGraphicsElement;
|
|
10360
10393
|
}());
|
|
10361
10394
|
|
|
10362
|
-
var __extends$
|
|
10395
|
+
var __extends$4 = (undefined && undefined.__extends) || (function () {
|
|
10363
10396
|
var extendStatics = function (d, b) {
|
|
10364
10397
|
extendStatics = Object.setPrototypeOf ||
|
|
10365
10398
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -10372,14 +10405,11 @@ var __extends$10 = (undefined && undefined.__extends) || (function () {
|
|
|
10372
10405
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
10373
10406
|
};
|
|
10374
10407
|
})();
|
|
10375
|
-
/**
|
|
10376
|
-
* PdfAutomaticField.ts class for EJ2-PDF
|
|
10377
|
-
*/
|
|
10378
10408
|
/**
|
|
10379
10409
|
* Represents a fields which is calculated before the document saves.
|
|
10380
10410
|
*/
|
|
10381
10411
|
var PdfAutomaticField = /** @__PURE__ @class */ (function (_super) {
|
|
10382
|
-
__extends$
|
|
10412
|
+
__extends$4(PdfAutomaticField, _super);
|
|
10383
10413
|
// Constructors
|
|
10384
10414
|
function PdfAutomaticField() {
|
|
10385
10415
|
var _this = _super.call(this) || this;
|
|
@@ -11354,7 +11384,7 @@ var PdfImage = /** @__PURE__ @class */ (function () {
|
|
|
11354
11384
|
return PdfImage;
|
|
11355
11385
|
}());
|
|
11356
11386
|
|
|
11357
|
-
var __extends$
|
|
11387
|
+
var __extends$5 = (undefined && undefined.__extends) || (function () {
|
|
11358
11388
|
var extendStatics = function (d, b) {
|
|
11359
11389
|
extendStatics = Object.setPrototypeOf ||
|
|
11360
11390
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -11367,9 +11397,6 @@ var __extends$11 = (undefined && undefined.__extends) || (function () {
|
|
|
11367
11397
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
11368
11398
|
};
|
|
11369
11399
|
})();
|
|
11370
|
-
/**
|
|
11371
|
-
* PdfBitmap.ts class for EJ2-PDF
|
|
11372
|
-
*/
|
|
11373
11400
|
/**
|
|
11374
11401
|
* The 'PdfBitmap' contains methods and properties to handle the Bitmap images.
|
|
11375
11402
|
* ```typescript
|
|
@@ -11390,7 +11417,7 @@ var __extends$11 = (undefined && undefined.__extends) || (function () {
|
|
|
11390
11417
|
* ```
|
|
11391
11418
|
*/
|
|
11392
11419
|
var PdfBitmap = /** @__PURE__ @class */ (function (_super) {
|
|
11393
|
-
__extends$
|
|
11420
|
+
__extends$5(PdfBitmap, _super);
|
|
11394
11421
|
/**
|
|
11395
11422
|
* Create an instance for `PdfBitmap` class.
|
|
11396
11423
|
* @param encodedString Base64 string of an image.
|
|
@@ -11464,11 +11491,6 @@ var PdfBitmap = /** @__PURE__ @class */ (function (_super) {
|
|
|
11464
11491
|
return PdfBitmap;
|
|
11465
11492
|
}(PdfImage));
|
|
11466
11493
|
|
|
11467
|
-
/**
|
|
11468
|
-
* Images classes
|
|
11469
|
-
* @hidden
|
|
11470
|
-
*/
|
|
11471
|
-
|
|
11472
11494
|
/**
|
|
11473
11495
|
* TtfTableInfo.ts class for EJ2-PDF
|
|
11474
11496
|
*/
|
|
@@ -12880,7 +12902,6 @@ var TtfReader = /** @__PURE__ @class */ (function () {
|
|
|
12880
12902
|
var glyphInfo = this.getGlyph(ch);
|
|
12881
12903
|
if (!glyphInfo.empty) {
|
|
12882
12904
|
glyph += String.fromCharCode(glyphInfo.index);
|
|
12883
|
-
|
|
12884
12905
|
}
|
|
12885
12906
|
}
|
|
12886
12907
|
return glyph;
|
|
@@ -13010,7 +13031,7 @@ var TtfReader = /** @__PURE__ @class */ (function () {
|
|
|
13010
13031
|
return TtfReader;
|
|
13011
13032
|
}());
|
|
13012
13033
|
|
|
13013
|
-
var __extends$
|
|
13034
|
+
var __extends$6 = (undefined && undefined.__extends) || (function () {
|
|
13014
13035
|
var extendStatics = function (d, b) {
|
|
13015
13036
|
extendStatics = Object.setPrototypeOf ||
|
|
13016
13037
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -13066,12 +13087,6 @@ var PdfFontMetrics = /** @__PURE__ @class */ (function () {
|
|
|
13066
13087
|
*/
|
|
13067
13088
|
PdfFontMetrics.prototype.getHeight = function (format) {
|
|
13068
13089
|
var height;
|
|
13069
|
-
var clearTypeFonts = ['cambria', 'candara', 'constantia', 'corbel', 'cariadings'];
|
|
13070
|
-
var clearTypeFontCollection = [];
|
|
13071
|
-
for (var index = 0; index < clearTypeFonts.length; index++) {
|
|
13072
|
-
var font = clearTypeFonts[index];
|
|
13073
|
-
clearTypeFontCollection.push(font);
|
|
13074
|
-
}
|
|
13075
13090
|
if (this.getDescent(format) < 0) {
|
|
13076
13091
|
// if ((clearTypeFontCollection.indexOf(this.name.toLowerCase()) !== -1) && !this.isUnicodeFont) {
|
|
13077
13092
|
// height = (this.GetAscent(format) - this.GetDescent(format) - this.GetLineGap(format));
|
|
@@ -13141,7 +13156,7 @@ var WidthTable = /** @__PURE__ @class */ (function () {
|
|
|
13141
13156
|
return WidthTable;
|
|
13142
13157
|
}());
|
|
13143
13158
|
var StandardWidthTable = /** @__PURE__ @class */ (function (_super) {
|
|
13144
|
-
__extends$
|
|
13159
|
+
__extends$6(StandardWidthTable, _super);
|
|
13145
13160
|
// Constructors
|
|
13146
13161
|
/**
|
|
13147
13162
|
* Initializes a new instance of the `StandardWidthTable` class.
|
|
@@ -14108,7 +14123,6 @@ var ArabicShape = /** @__PURE__ @class */ (function () {
|
|
|
14108
14123
|
});
|
|
14109
14124
|
return ArabicShape;
|
|
14110
14125
|
}());
|
|
14111
|
-
|
|
14112
14126
|
//#endregion
|
|
14113
14127
|
|
|
14114
14128
|
/**
|
|
@@ -15135,8 +15149,7 @@ var RtlRenderer = /** @__PURE__ @class */ (function () {
|
|
|
15135
15149
|
throw new Error('ArgumentNullException : font');
|
|
15136
15150
|
}
|
|
15137
15151
|
var words = [];
|
|
15138
|
-
|
|
15139
|
-
if (!system || words == null) {
|
|
15152
|
+
{
|
|
15140
15153
|
words = this.customSplitLayout(line, font, rtl, wordSpace, format);
|
|
15141
15154
|
}
|
|
15142
15155
|
return words;
|
|
@@ -15391,7 +15404,7 @@ var PathPointType;
|
|
|
15391
15404
|
PathPointType[PathPointType["CloseSubpath"] = 128] = "CloseSubpath";
|
|
15392
15405
|
})(PathPointType || (PathPointType = {}));
|
|
15393
15406
|
|
|
15394
|
-
var __extends$
|
|
15407
|
+
var __extends$7 = (undefined && undefined.__extends) || (function () {
|
|
15395
15408
|
var extendStatics = function (d, b) {
|
|
15396
15409
|
extendStatics = Object.setPrototypeOf ||
|
|
15397
15410
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -15410,7 +15423,7 @@ var __extends$13 = (undefined && undefined.__extends) || (function () {
|
|
|
15410
15423
|
* @private
|
|
15411
15424
|
*/
|
|
15412
15425
|
var PdfGradientBrush = /** @__PURE__ @class */ (function (_super) {
|
|
15413
|
-
__extends$
|
|
15426
|
+
__extends$7(PdfGradientBrush, _super);
|
|
15414
15427
|
//Constructor
|
|
15415
15428
|
/**
|
|
15416
15429
|
* Initializes a new instance of the `PdfGradientBrush` class.
|
|
@@ -15740,9 +15753,7 @@ var PdfTemplate = /** @__PURE__ @class */ (function () {
|
|
|
15740
15753
|
* @private
|
|
15741
15754
|
*/
|
|
15742
15755
|
this.writeTransformation = true;
|
|
15743
|
-
if (typeof arg1 === 'undefined')
|
|
15744
|
-
//
|
|
15745
|
-
}
|
|
15756
|
+
if (typeof arg1 === 'undefined') ;
|
|
15746
15757
|
else if (arg1 instanceof SizeF && typeof arg2 === 'undefined') {
|
|
15747
15758
|
this.content = new PdfStream();
|
|
15748
15759
|
var tempSize = new SizeF(arg1.width, arg1.height);
|
|
@@ -15897,7 +15908,7 @@ var PdfTemplate = /** @__PURE__ @class */ (function () {
|
|
|
15897
15908
|
return PdfTemplate;
|
|
15898
15909
|
}());
|
|
15899
15910
|
|
|
15900
|
-
var __extends$
|
|
15911
|
+
var __extends$8 = (undefined && undefined.__extends) || (function () {
|
|
15901
15912
|
var extendStatics = function (d, b) {
|
|
15902
15913
|
extendStatics = Object.setPrototypeOf ||
|
|
15903
15914
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -15910,15 +15921,12 @@ var __extends$15 = (undefined && undefined.__extends) || (function () {
|
|
|
15910
15921
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15911
15922
|
};
|
|
15912
15923
|
})();
|
|
15913
|
-
/**
|
|
15914
|
-
* PdfResources.ts class for EJ2-PDF
|
|
15915
|
-
*/
|
|
15916
15924
|
/**
|
|
15917
15925
|
* `PdfResources` class used to set resource contents like font, image.
|
|
15918
15926
|
* @private
|
|
15919
15927
|
*/
|
|
15920
15928
|
var PdfResources = /** @__PURE__ @class */ (function (_super) {
|
|
15921
|
-
__extends$
|
|
15929
|
+
__extends$8(PdfResources, _super);
|
|
15922
15930
|
function PdfResources(baseDictionary) {
|
|
15923
15931
|
var _this = _super.call(this, baseDictionary) || this;
|
|
15924
15932
|
/**
|
|
@@ -16162,10 +16170,9 @@ var Guid = /** @__PURE__ @class */ (function () {
|
|
|
16162
16170
|
};
|
|
16163
16171
|
return Guid;
|
|
16164
16172
|
}());
|
|
16165
|
-
|
|
16166
16173
|
/* tslint:enable */
|
|
16167
16174
|
|
|
16168
|
-
var __extends$
|
|
16175
|
+
var __extends$9 = (undefined && undefined.__extends) || (function () {
|
|
16169
16176
|
var extendStatics = function (d, b) {
|
|
16170
16177
|
extendStatics = Object.setPrototypeOf ||
|
|
16171
16178
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -16182,7 +16189,7 @@ var __extends$14 = (undefined && undefined.__extends) || (function () {
|
|
|
16182
16189
|
* `PdfTilingBrush` Implements a colored tiling brush.
|
|
16183
16190
|
*/
|
|
16184
16191
|
var PdfTilingBrush = /** @__PURE__ @class */ (function (_super) {
|
|
16185
|
-
__extends$
|
|
16192
|
+
__extends$9(PdfTilingBrush, _super);
|
|
16186
16193
|
/**
|
|
16187
16194
|
* Initializes a new instance of the `PdfTilingBrush` class.
|
|
16188
16195
|
* @public
|
|
@@ -18717,9 +18724,6 @@ var PdfPageLayer = /** @__PURE__ @class */ (function () {
|
|
|
18717
18724
|
if (page.origin.x >= 0 && page.origin.y >= 0 || !(isSame)) {
|
|
18718
18725
|
this.pdfGraphics.initializeCoordinates();
|
|
18719
18726
|
}
|
|
18720
|
-
else {
|
|
18721
|
-
// this.m_graphics.InitializeCoordinates(page);
|
|
18722
|
-
}
|
|
18723
18727
|
var clipRect = oPage.section.getActualBounds(oPage, true);
|
|
18724
18728
|
var margins = oPage.section.pageSettings.margins;
|
|
18725
18729
|
if (this.clipPageTemplates) {
|
|
@@ -18793,7 +18797,7 @@ var PdfCollection = /** @__PURE__ @class */ (function () {
|
|
|
18793
18797
|
return PdfCollection;
|
|
18794
18798
|
}());
|
|
18795
18799
|
|
|
18796
|
-
var __extends$
|
|
18800
|
+
var __extends$a = (undefined && undefined.__extends) || (function () {
|
|
18797
18801
|
var extendStatics = function (d, b) {
|
|
18798
18802
|
extendStatics = Object.setPrototypeOf ||
|
|
18799
18803
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -18806,14 +18810,11 @@ var __extends$9 = (undefined && undefined.__extends) || (function () {
|
|
|
18806
18810
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18807
18811
|
};
|
|
18808
18812
|
})();
|
|
18809
|
-
/**
|
|
18810
|
-
* PdfPageLayerCollection.ts class for EJ2-PDF
|
|
18811
|
-
*/
|
|
18812
18813
|
/**
|
|
18813
18814
|
* The class provides methods and properties to handle the collections of `PdfPageLayer`.
|
|
18814
18815
|
*/
|
|
18815
18816
|
var PdfPageLayerCollection = /** @__PURE__ @class */ (function (_super) {
|
|
18816
|
-
__extends$
|
|
18817
|
+
__extends$a(PdfPageLayerCollection, _super);
|
|
18817
18818
|
function PdfPageLayerCollection(page) {
|
|
18818
18819
|
var _this = _super.call(this) || this;
|
|
18819
18820
|
/**
|
|
@@ -18950,6 +18951,7 @@ var PdfPageLayerCollection = /** @__PURE__ @class */ (function (_super) {
|
|
|
18950
18951
|
var contents = this.page.contents;
|
|
18951
18952
|
var resource = this.page.getResources();
|
|
18952
18953
|
var crossTable = null;
|
|
18954
|
+
// if (loadedPage instanceof PdfPage) {
|
|
18953
18955
|
crossTable = loadedPage.crossTable;
|
|
18954
18956
|
// } else {
|
|
18955
18957
|
// crossTable = (loadedPage as PdfLoadedPage).CrossTable;
|
|
@@ -19401,7 +19403,7 @@ var PdfAnnotationCollection = /** @__PURE__ @class */ (function () {
|
|
|
19401
19403
|
return PdfAnnotationCollection;
|
|
19402
19404
|
}());
|
|
19403
19405
|
|
|
19404
|
-
var __extends$
|
|
19406
|
+
var __extends$b = (undefined && undefined.__extends) || (function () {
|
|
19405
19407
|
var extendStatics = function (d, b) {
|
|
19406
19408
|
extendStatics = Object.setPrototypeOf ||
|
|
19407
19409
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -19437,7 +19439,7 @@ var __extends$8 = (undefined && undefined.__extends) || (function () {
|
|
|
19437
19439
|
* ```
|
|
19438
19440
|
*/
|
|
19439
19441
|
var PdfPage = /** @__PURE__ @class */ (function (_super) {
|
|
19440
|
-
__extends$
|
|
19442
|
+
__extends$b(PdfPage, _super);
|
|
19441
19443
|
//constructors
|
|
19442
19444
|
/**
|
|
19443
19445
|
* Initialize the new instance for `PdfPage` class.
|
|
@@ -20043,7 +20045,7 @@ var PdfDocumentTemplate = /** @__PURE__ @class */ (function () {
|
|
|
20043
20045
|
return PdfDocumentTemplate;
|
|
20044
20046
|
}());
|
|
20045
20047
|
|
|
20046
|
-
var __extends$
|
|
20048
|
+
var __extends$c = (undefined && undefined.__extends) || (function () {
|
|
20047
20049
|
var extendStatics = function (d, b) {
|
|
20048
20050
|
extendStatics = Object.setPrototypeOf ||
|
|
20049
20051
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -20056,14 +20058,11 @@ var __extends$16 = (undefined && undefined.__extends) || (function () {
|
|
|
20056
20058
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
20057
20059
|
};
|
|
20058
20060
|
})();
|
|
20059
|
-
/**
|
|
20060
|
-
* PdfSectionTemplate.ts class for EJ2-PDF
|
|
20061
|
-
*/
|
|
20062
20061
|
/**
|
|
20063
20062
|
* Represents a `page template` for all the pages in the section.
|
|
20064
20063
|
*/
|
|
20065
20064
|
var PdfSectionTemplate = /** @__PURE__ @class */ (function (_super) {
|
|
20066
|
-
__extends$
|
|
20065
|
+
__extends$c(PdfSectionTemplate, _super);
|
|
20067
20066
|
// Constructors
|
|
20068
20067
|
/**
|
|
20069
20068
|
* `Creates a new object`.
|
|
@@ -21148,7 +21147,7 @@ var PdfCacheCollection = /** @__PURE__ @class */ (function () {
|
|
|
21148
21147
|
return PdfCacheCollection;
|
|
21149
21148
|
}());
|
|
21150
21149
|
|
|
21151
|
-
var __extends$
|
|
21150
|
+
var __extends$d = (undefined && undefined.__extends) || (function () {
|
|
21152
21151
|
var extendStatics = function (d, b) {
|
|
21153
21152
|
extendStatics = Object.setPrototypeOf ||
|
|
21154
21153
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -21181,7 +21180,7 @@ var __extends$6 = (undefined && undefined.__extends) || (function () {
|
|
|
21181
21180
|
* ```
|
|
21182
21181
|
*/
|
|
21183
21182
|
var PdfDocument = /** @__PURE__ @class */ (function (_super) {
|
|
21184
|
-
__extends$
|
|
21183
|
+
__extends$d(PdfDocument, _super);
|
|
21185
21184
|
function PdfDocument(isMerging) {
|
|
21186
21185
|
var _this = _super.call(this) || this;
|
|
21187
21186
|
/**
|
|
@@ -22070,7 +22069,7 @@ var PdfStandardFontMetricsFactory = /** @__PURE__ @class */ (function () {
|
|
|
22070
22069
|
return PdfStandardFontMetricsFactory;
|
|
22071
22070
|
}());
|
|
22072
22071
|
|
|
22073
|
-
var __extends$
|
|
22072
|
+
var __extends$e = (undefined && undefined.__extends) || (function () {
|
|
22074
22073
|
var extendStatics = function (d, b) {
|
|
22075
22074
|
extendStatics = Object.setPrototypeOf ||
|
|
22076
22075
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -22106,7 +22105,7 @@ var __extends$5 = (undefined && undefined.__extends) || (function () {
|
|
|
22106
22105
|
* ```
|
|
22107
22106
|
*/
|
|
22108
22107
|
var PdfStandardFont = /** @__PURE__ @class */ (function (_super) {
|
|
22109
|
-
__extends$
|
|
22108
|
+
__extends$e(PdfStandardFont, _super);
|
|
22110
22109
|
function PdfStandardFont(fontFamilyPrototype, size, style) {
|
|
22111
22110
|
var _this = _super.call(this, size, (typeof style === 'undefined') ? ((fontFamilyPrototype instanceof PdfStandardFont) ? fontFamilyPrototype.style : PdfFontStyle.Regular) : style) || this;
|
|
22112
22111
|
/**
|
|
@@ -22517,7 +22516,7 @@ var PdfAnnotation = /** @__PURE__ @class */ (function () {
|
|
|
22517
22516
|
return PdfAnnotation;
|
|
22518
22517
|
}());
|
|
22519
22518
|
|
|
22520
|
-
var __extends$
|
|
22519
|
+
var __extends$f = (undefined && undefined.__extends) || (function () {
|
|
22521
22520
|
var extendStatics = function (d, b) {
|
|
22522
22521
|
extendStatics = Object.setPrototypeOf ||
|
|
22523
22522
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -22535,7 +22534,7 @@ var __extends$3 = (undefined && undefined.__extends) || (function () {
|
|
|
22535
22534
|
* @private
|
|
22536
22535
|
*/
|
|
22537
22536
|
var PdfLinkAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
22538
|
-
__extends$
|
|
22537
|
+
__extends$f(PdfLinkAnnotation, _super);
|
|
22539
22538
|
function PdfLinkAnnotation(rectangle) {
|
|
22540
22539
|
return _super.call(this, rectangle) || this;
|
|
22541
22540
|
}
|
|
@@ -22551,7 +22550,7 @@ var PdfLinkAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
|
22551
22550
|
return PdfLinkAnnotation;
|
|
22552
22551
|
}(PdfAnnotation));
|
|
22553
22552
|
|
|
22554
|
-
var __extends$
|
|
22553
|
+
var __extends$g = (undefined && undefined.__extends) || (function () {
|
|
22555
22554
|
var extendStatics = function (d, b) {
|
|
22556
22555
|
extendStatics = Object.setPrototypeOf ||
|
|
22557
22556
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -22569,7 +22568,7 @@ var __extends$2 = (undefined && undefined.__extends) || (function () {
|
|
|
22569
22568
|
* @private
|
|
22570
22569
|
*/
|
|
22571
22570
|
var PdfActionLinkAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
22572
|
-
__extends$
|
|
22571
|
+
__extends$g(PdfActionLinkAnnotation, _super);
|
|
22573
22572
|
// Constructors
|
|
22574
22573
|
/**
|
|
22575
22574
|
* Specifies the constructor for `ActionLinkAnnotation`.
|
|
@@ -22602,7 +22601,7 @@ var PdfActionLinkAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
|
22602
22601
|
return PdfActionLinkAnnotation;
|
|
22603
22602
|
}(PdfLinkAnnotation));
|
|
22604
22603
|
|
|
22605
|
-
var __extends$
|
|
22604
|
+
var __extends$h = (undefined && undefined.__extends) || (function () {
|
|
22606
22605
|
var extendStatics = function (d, b) {
|
|
22607
22606
|
extendStatics = Object.setPrototypeOf ||
|
|
22608
22607
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -22644,7 +22643,7 @@ var __extends$17 = (undefined && undefined.__extends) || (function () {
|
|
|
22644
22643
|
* ```
|
|
22645
22644
|
*/
|
|
22646
22645
|
var PdfDocumentLinkAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
22647
|
-
__extends$
|
|
22646
|
+
__extends$h(PdfDocumentLinkAnnotation, _super);
|
|
22648
22647
|
function PdfDocumentLinkAnnotation(rectangle, destination) {
|
|
22649
22648
|
var _this = _super.call(this, rectangle) || this;
|
|
22650
22649
|
// Fields
|
|
@@ -22794,9 +22793,7 @@ var ElementLayouter = /** @__PURE__ @class */ (function () {
|
|
|
22794
22793
|
}());
|
|
22795
22794
|
var PdfLayoutFormat = /** @__PURE__ @class */ (function () {
|
|
22796
22795
|
function PdfLayoutFormat(baseFormat) {
|
|
22797
|
-
if (typeof baseFormat === 'undefined')
|
|
22798
|
-
//
|
|
22799
|
-
}
|
|
22796
|
+
if (typeof baseFormat === 'undefined') ;
|
|
22800
22797
|
else {
|
|
22801
22798
|
this.break = baseFormat.break;
|
|
22802
22799
|
this.layout = baseFormat.layout;
|
|
@@ -23282,7 +23279,7 @@ var PdfLayoutElement = /** @__PURE__ @class */ (function () {
|
|
|
23282
23279
|
return PdfLayoutElement;
|
|
23283
23280
|
}());
|
|
23284
23281
|
|
|
23285
|
-
var __extends$
|
|
23282
|
+
var __extends$i = (undefined && undefined.__extends) || (function () {
|
|
23286
23283
|
var extendStatics = function (d, b) {
|
|
23287
23284
|
extendStatics = Object.setPrototypeOf ||
|
|
23288
23285
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -23295,15 +23292,12 @@ var __extends$20 = (undefined && undefined.__extends) || (function () {
|
|
|
23295
23292
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
23296
23293
|
};
|
|
23297
23294
|
})();
|
|
23298
|
-
/**
|
|
23299
|
-
* TextLayouter.ts class for EJ2-PDF
|
|
23300
|
-
*/
|
|
23301
23295
|
/**
|
|
23302
23296
|
* Class that `layouts the text`.
|
|
23303
23297
|
* @private
|
|
23304
23298
|
*/
|
|
23305
23299
|
var TextLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
23306
|
-
__extends$
|
|
23300
|
+
__extends$i(TextLayouter, _super);
|
|
23307
23301
|
// Constructors
|
|
23308
23302
|
/**
|
|
23309
23303
|
* Initializes a new instance of the `TextLayouter` class.
|
|
@@ -23421,7 +23415,7 @@ var TextPageLayoutResult = /** @__PURE__ @class */ (function () {
|
|
|
23421
23415
|
return TextPageLayoutResult;
|
|
23422
23416
|
}());
|
|
23423
23417
|
var PdfTextLayoutResult = /** @__PURE__ @class */ (function (_super) {
|
|
23424
|
-
__extends$
|
|
23418
|
+
__extends$i(PdfTextLayoutResult, _super);
|
|
23425
23419
|
// Constructors
|
|
23426
23420
|
/**
|
|
23427
23421
|
* Initializes the new instance of `PdfTextLayoutResult` class.
|
|
@@ -23459,7 +23453,7 @@ var PdfTextLayoutResult = /** @__PURE__ @class */ (function (_super) {
|
|
|
23459
23453
|
return PdfTextLayoutResult;
|
|
23460
23454
|
}(PdfLayoutResult));
|
|
23461
23455
|
|
|
23462
|
-
var __extends$
|
|
23456
|
+
var __extends$j = (undefined && undefined.__extends) || (function () {
|
|
23463
23457
|
var extendStatics = function (d, b) {
|
|
23464
23458
|
extendStatics = Object.setPrototypeOf ||
|
|
23465
23459
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -23472,16 +23466,13 @@ var __extends$19 = (undefined && undefined.__extends) || (function () {
|
|
|
23472
23466
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
23473
23467
|
};
|
|
23474
23468
|
})();
|
|
23475
|
-
/**
|
|
23476
|
-
* PdfTextElement.ts class for EJ2-PDF
|
|
23477
|
-
*/
|
|
23478
23469
|
/**
|
|
23479
23470
|
* `PdfTextElement` class represents the text area with the ability to span several pages
|
|
23480
23471
|
* and inherited from the 'PdfLayoutElement' class.
|
|
23481
23472
|
* @private
|
|
23482
23473
|
*/
|
|
23483
23474
|
var PdfTextElement = /** @__PURE__ @class */ (function (_super) {
|
|
23484
|
-
__extends$
|
|
23475
|
+
__extends$j(PdfTextElement, _super);
|
|
23485
23476
|
function PdfTextElement(arg1, arg2, arg3, arg4, arg5) {
|
|
23486
23477
|
var _this = _super.call(this) || this;
|
|
23487
23478
|
// Fields
|
|
@@ -23507,9 +23498,7 @@ var PdfTextElement = /** @__PURE__ @class */ (function (_super) {
|
|
|
23507
23498
|
* @private
|
|
23508
23499
|
*/
|
|
23509
23500
|
_this.isPdfTextElement = false;
|
|
23510
|
-
if (typeof arg1 === 'undefined')
|
|
23511
|
-
//
|
|
23512
|
-
}
|
|
23501
|
+
if (typeof arg1 === 'undefined') ;
|
|
23513
23502
|
else if (typeof arg1 === 'string' && typeof arg2 === 'undefined') {
|
|
23514
23503
|
_this.content = arg1;
|
|
23515
23504
|
_this.elementValue = arg1;
|
|
@@ -23857,7 +23846,7 @@ var PdfTextElement = /** @__PURE__ @class */ (function (_super) {
|
|
|
23857
23846
|
return PdfTextElement;
|
|
23858
23847
|
}(PdfLayoutElement));
|
|
23859
23848
|
|
|
23860
|
-
var __extends$
|
|
23849
|
+
var __extends$k = (undefined && undefined.__extends) || (function () {
|
|
23861
23850
|
var extendStatics = function (d, b) {
|
|
23862
23851
|
extendStatics = Object.setPrototypeOf ||
|
|
23863
23852
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -23875,7 +23864,7 @@ var __extends$21 = (undefined && undefined.__extends) || (function () {
|
|
|
23875
23864
|
* @private
|
|
23876
23865
|
*/
|
|
23877
23866
|
var PdfUriAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
23878
|
-
__extends$
|
|
23867
|
+
__extends$k(PdfUriAnnotation, _super);
|
|
23879
23868
|
function PdfUriAnnotation(rectangle, uri) {
|
|
23880
23869
|
var _this = _super.call(this, rectangle) || this;
|
|
23881
23870
|
if (typeof uri !== 'undefined') {
|
|
@@ -23943,7 +23932,7 @@ var PdfUriAnnotation = /** @__PURE__ @class */ (function (_super) {
|
|
|
23943
23932
|
return PdfUriAnnotation;
|
|
23944
23933
|
}(PdfActionLinkAnnotation));
|
|
23945
23934
|
|
|
23946
|
-
var __extends$
|
|
23935
|
+
var __extends$l = (undefined && undefined.__extends) || (function () {
|
|
23947
23936
|
var extendStatics = function (d, b) {
|
|
23948
23937
|
extendStatics = Object.setPrototypeOf ||
|
|
23949
23938
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -23984,7 +23973,7 @@ var __extends$18 = (undefined && undefined.__extends) || (function () {
|
|
|
23984
23973
|
* ```
|
|
23985
23974
|
*/
|
|
23986
23975
|
var PdfTextWebLink = /** @__PURE__ @class */ (function (_super) {
|
|
23987
|
-
__extends$
|
|
23976
|
+
__extends$l(PdfTextWebLink, _super);
|
|
23988
23977
|
// Constructors
|
|
23989
23978
|
/**
|
|
23990
23979
|
* Initializes a new instance of the `PdfTextWebLink` class.
|
|
@@ -24380,9 +24369,7 @@ var PdfTemplateValuePair = /** @__PURE__ @class */ (function () {
|
|
|
24380
24369
|
* @private
|
|
24381
24370
|
*/
|
|
24382
24371
|
this.content = '';
|
|
24383
|
-
if (typeof template === 'undefined')
|
|
24384
|
-
//
|
|
24385
|
-
}
|
|
24372
|
+
if (typeof template === 'undefined') ;
|
|
24386
24373
|
else {
|
|
24387
24374
|
this.template = template;
|
|
24388
24375
|
this.value = value;
|
|
@@ -24420,7 +24407,7 @@ var PdfTemplateValuePair = /** @__PURE__ @class */ (function () {
|
|
|
24420
24407
|
return PdfTemplateValuePair;
|
|
24421
24408
|
}());
|
|
24422
24409
|
|
|
24423
|
-
var __extends$
|
|
24410
|
+
var __extends$m = (undefined && undefined.__extends) || (function () {
|
|
24424
24411
|
var extendStatics = function (d, b) {
|
|
24425
24412
|
extendStatics = Object.setPrototypeOf ||
|
|
24426
24413
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -24433,14 +24420,11 @@ var __extends$23 = (undefined && undefined.__extends) || (function () {
|
|
|
24433
24420
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24434
24421
|
};
|
|
24435
24422
|
})();
|
|
24436
|
-
/**
|
|
24437
|
-
* PdfAutomaticField.ts class for EJ2-PDF
|
|
24438
|
-
*/
|
|
24439
24423
|
/**
|
|
24440
24424
|
* Represents automatic field which has the same value within the `PdfGraphics`.
|
|
24441
24425
|
*/
|
|
24442
24426
|
var PdfMultipleValueField = /** @__PURE__ @class */ (function (_super) {
|
|
24443
|
-
__extends$
|
|
24427
|
+
__extends$m(PdfMultipleValueField, _super);
|
|
24444
24428
|
function PdfMultipleValueField() {
|
|
24445
24429
|
var _this = _super.call(this) || this;
|
|
24446
24430
|
// Fields
|
|
@@ -24466,7 +24450,7 @@ var PdfMultipleValueField = /** @__PURE__ @class */ (function (_super) {
|
|
|
24466
24450
|
return PdfMultipleValueField;
|
|
24467
24451
|
}(PdfAutomaticField));
|
|
24468
24452
|
|
|
24469
|
-
var __extends$
|
|
24453
|
+
var __extends$n = (undefined && undefined.__extends) || (function () {
|
|
24470
24454
|
var extendStatics = function (d, b) {
|
|
24471
24455
|
extendStatics = Object.setPrototypeOf ||
|
|
24472
24456
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -24484,7 +24468,7 @@ var __extends$22 = (undefined && undefined.__extends) || (function () {
|
|
|
24484
24468
|
* @public
|
|
24485
24469
|
*/
|
|
24486
24470
|
var PdfPageNumberField = /** @__PURE__ @class */ (function (_super) {
|
|
24487
|
-
__extends$
|
|
24471
|
+
__extends$n(PdfPageNumberField, _super);
|
|
24488
24472
|
function PdfPageNumberField(font, arg2) {
|
|
24489
24473
|
var _this = _super.call(this) || this;
|
|
24490
24474
|
// Fields
|
|
@@ -24543,7 +24527,7 @@ var PdfPageNumberField = /** @__PURE__ @class */ (function (_super) {
|
|
|
24543
24527
|
return PdfPageNumberField;
|
|
24544
24528
|
}(PdfMultipleValueField));
|
|
24545
24529
|
|
|
24546
|
-
var __extends$
|
|
24530
|
+
var __extends$o = (undefined && undefined.__extends) || (function () {
|
|
24547
24531
|
var extendStatics = function (d, b) {
|
|
24548
24532
|
extendStatics = Object.setPrototypeOf ||
|
|
24549
24533
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -24556,14 +24540,11 @@ var __extends$24 = (undefined && undefined.__extends) || (function () {
|
|
|
24556
24540
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24557
24541
|
};
|
|
24558
24542
|
})();
|
|
24559
|
-
/**
|
|
24560
|
-
* PdfCompositeField.ts class for EJ2-PDF
|
|
24561
|
-
*/
|
|
24562
24543
|
/**
|
|
24563
24544
|
* Represents class which can concatenate multiple automatic fields into single string.
|
|
24564
24545
|
*/
|
|
24565
24546
|
var PdfCompositeField = /** @__PURE__ @class */ (function (_super) {
|
|
24566
|
-
__extends$
|
|
24547
|
+
__extends$o(PdfCompositeField, _super);
|
|
24567
24548
|
// Constructor
|
|
24568
24549
|
/**
|
|
24569
24550
|
* Initialize a new instance of `PdfCompositeField` class.
|
|
@@ -24642,7 +24623,7 @@ var PdfCompositeField = /** @__PURE__ @class */ (function (_super) {
|
|
|
24642
24623
|
return PdfCompositeField;
|
|
24643
24624
|
}(PdfMultipleValueField));
|
|
24644
24625
|
|
|
24645
|
-
var __extends$
|
|
24626
|
+
var __extends$p = (undefined && undefined.__extends) || (function () {
|
|
24646
24627
|
var extendStatics = function (d, b) {
|
|
24647
24628
|
extendStatics = Object.setPrototypeOf ||
|
|
24648
24629
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -24655,14 +24636,11 @@ var __extends$26 = (undefined && undefined.__extends) || (function () {
|
|
|
24655
24636
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24656
24637
|
};
|
|
24657
24638
|
})();
|
|
24658
|
-
/**
|
|
24659
|
-
* PdfSingleValueField.ts class for EJ2-PDF
|
|
24660
|
-
*/
|
|
24661
24639
|
/**
|
|
24662
24640
|
* Represents automatic field which has the same value in the whole document.
|
|
24663
24641
|
*/
|
|
24664
24642
|
var PdfSingleValueField = /** @__PURE__ @class */ (function (_super) {
|
|
24665
|
-
__extends$
|
|
24643
|
+
__extends$p(PdfSingleValueField, _super);
|
|
24666
24644
|
// Constructors
|
|
24667
24645
|
function PdfSingleValueField() {
|
|
24668
24646
|
var _this = _super.call(this) || this;
|
|
@@ -24699,7 +24677,7 @@ var PdfSingleValueField = /** @__PURE__ @class */ (function (_super) {
|
|
|
24699
24677
|
return PdfSingleValueField;
|
|
24700
24678
|
}(PdfAutomaticField));
|
|
24701
24679
|
|
|
24702
|
-
var __extends$
|
|
24680
|
+
var __extends$q = (undefined && undefined.__extends) || (function () {
|
|
24703
24681
|
var extendStatics = function (d, b) {
|
|
24704
24682
|
extendStatics = Object.setPrototypeOf ||
|
|
24705
24683
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -24712,14 +24690,11 @@ var __extends$25 = (undefined && undefined.__extends) || (function () {
|
|
|
24712
24690
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
24713
24691
|
};
|
|
24714
24692
|
})();
|
|
24715
|
-
/**
|
|
24716
|
-
* PdfPageCountField.ts class for EJ2-PDF
|
|
24717
|
-
*/
|
|
24718
24693
|
/**
|
|
24719
24694
|
* Represents total PDF document page count automatic field.
|
|
24720
24695
|
*/
|
|
24721
24696
|
var PdfPageCountField = /** @__PURE__ @class */ (function (_super) {
|
|
24722
|
-
__extends$
|
|
24697
|
+
__extends$q(PdfPageCountField, _super);
|
|
24723
24698
|
function PdfPageCountField(font, arg2) {
|
|
24724
24699
|
var _this = _super.call(this) || this;
|
|
24725
24700
|
// Fields
|
|
@@ -25026,7 +25001,7 @@ var PdfFunction = /** @__PURE__ @class */ (function () {
|
|
|
25026
25001
|
return PdfFunction;
|
|
25027
25002
|
}());
|
|
25028
25003
|
|
|
25029
|
-
var __extends$
|
|
25004
|
+
var __extends$r = (undefined && undefined.__extends) || (function () {
|
|
25030
25005
|
var extendStatics = function (d, b) {
|
|
25031
25006
|
extendStatics = Object.setPrototypeOf ||
|
|
25032
25007
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -25039,12 +25014,8 @@ var __extends$27 = (undefined && undefined.__extends) || (function () {
|
|
|
25039
25014
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
25040
25015
|
};
|
|
25041
25016
|
})();
|
|
25042
|
-
/**
|
|
25043
|
-
* PdfSampledFunction.ts class for EJ2-PDF
|
|
25044
|
-
* Implements PDF Sampled Function.
|
|
25045
|
-
*/
|
|
25046
25017
|
var PdfSampledFunction = /** @__PURE__ @class */ (function (_super) {
|
|
25047
|
-
__extends$
|
|
25018
|
+
__extends$r(PdfSampledFunction, _super);
|
|
25048
25019
|
/**
|
|
25049
25020
|
* Initializes a new instance of the `PdfSampledFunction` class.
|
|
25050
25021
|
* @public
|
|
@@ -25070,7 +25041,6 @@ var PdfSampledFunction = /** @__PURE__ @class */ (function (_super) {
|
|
|
25070
25041
|
var rLength = range.length;
|
|
25071
25042
|
var dLength = domain.length;
|
|
25072
25043
|
var sLength = samples.length;
|
|
25073
|
-
|
|
25074
25044
|
};
|
|
25075
25045
|
/**
|
|
25076
25046
|
* Sets the domain and range.
|
|
@@ -28583,7 +28553,7 @@ var PdfBlend = /** @__PURE__ @class */ (function () {
|
|
|
28583
28553
|
return PdfBlend;
|
|
28584
28554
|
}());
|
|
28585
28555
|
|
|
28586
|
-
var __extends$
|
|
28556
|
+
var __extends$s = (undefined && undefined.__extends) || (function () {
|
|
28587
28557
|
var extendStatics = function (d, b) {
|
|
28588
28558
|
extendStatics = Object.setPrototypeOf ||
|
|
28589
28559
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -28596,16 +28566,13 @@ var __extends$29 = (undefined && undefined.__extends) || (function () {
|
|
|
28596
28566
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28597
28567
|
};
|
|
28598
28568
|
})();
|
|
28599
|
-
/**
|
|
28600
|
-
* PdfColorBlend.ts class for EJ2-PDF
|
|
28601
|
-
*/
|
|
28602
28569
|
/**
|
|
28603
28570
|
* `PdfColorBlend` Represents the arrays of colors and positions used for
|
|
28604
28571
|
* interpolating color blending in a multicolor gradient.
|
|
28605
28572
|
* @private
|
|
28606
28573
|
*/
|
|
28607
28574
|
var PdfColorBlend = /** @__PURE__ @class */ (function (_super) {
|
|
28608
|
-
__extends$
|
|
28575
|
+
__extends$s(PdfColorBlend, _super);
|
|
28609
28576
|
function PdfColorBlend(count) {
|
|
28610
28577
|
var _this = _super.call(this) || this;
|
|
28611
28578
|
if (typeof count === 'number') {
|
|
@@ -28746,7 +28713,6 @@ var PdfColorBlend = /** @__PURE__ @class */ (function (_super) {
|
|
|
28746
28713
|
var values = [(sampleCount * 2)];
|
|
28747
28714
|
for (var i = 0; (i < sampleCount); ++i) {
|
|
28748
28715
|
var color = this.getNextColor(i, step, PdfColorSpace.GrayScale);
|
|
28749
|
-
|
|
28750
28716
|
}
|
|
28751
28717
|
return values;
|
|
28752
28718
|
};
|
|
@@ -28875,7 +28841,7 @@ var PdfColorBlend = /** @__PURE__ @class */ (function (_super) {
|
|
|
28875
28841
|
return PdfColorBlend;
|
|
28876
28842
|
}(PdfBlend));
|
|
28877
28843
|
|
|
28878
|
-
var __extends$
|
|
28844
|
+
var __extends$t = (undefined && undefined.__extends) || (function () {
|
|
28879
28845
|
var extendStatics = function (d, b) {
|
|
28880
28846
|
extendStatics = Object.setPrototypeOf ||
|
|
28881
28847
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -28888,15 +28854,12 @@ var __extends$28 = (undefined && undefined.__extends) || (function () {
|
|
|
28888
28854
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
28889
28855
|
};
|
|
28890
28856
|
})();
|
|
28891
|
-
/**
|
|
28892
|
-
* PdfLinearGradientBrush.ts class for EJ2-PDF
|
|
28893
|
-
*/
|
|
28894
28857
|
/**
|
|
28895
28858
|
* `PdfLinearGradientBrush` Implements linear gradient brush by using PDF axial shading pattern.
|
|
28896
28859
|
* @private
|
|
28897
28860
|
*/
|
|
28898
28861
|
var PdfLinearGradientBrush = /** @__PURE__ @class */ (function (_super) {
|
|
28899
|
-
__extends$
|
|
28862
|
+
__extends$t(PdfLinearGradientBrush, _super);
|
|
28900
28863
|
/**
|
|
28901
28864
|
* Initializes a new instance of the `PdfLinearGradientBrush` class.
|
|
28902
28865
|
* @public
|
|
@@ -29276,7 +29239,7 @@ var PdfLinearGradientBrush = /** @__PURE__ @class */ (function (_super) {
|
|
|
29276
29239
|
return PdfLinearGradientBrush;
|
|
29277
29240
|
}(PdfGradientBrush));
|
|
29278
29241
|
|
|
29279
|
-
var __extends$
|
|
29242
|
+
var __extends$u = (undefined && undefined.__extends) || (function () {
|
|
29280
29243
|
var extendStatics = function (d, b) {
|
|
29281
29244
|
extendStatics = Object.setPrototypeOf ||
|
|
29282
29245
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -29289,15 +29252,12 @@ var __extends$30 = (undefined && undefined.__extends) || (function () {
|
|
|
29289
29252
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
29290
29253
|
};
|
|
29291
29254
|
})();
|
|
29292
|
-
/**
|
|
29293
|
-
* PdfRadialGradientBrush.ts class for EJ2-PDF
|
|
29294
|
-
*/
|
|
29295
29255
|
/**
|
|
29296
29256
|
* `PdfRadialGradientBrush` Represent radial gradient brush.
|
|
29297
29257
|
* @private
|
|
29298
29258
|
*/
|
|
29299
29259
|
var PdfRadialGradientBrush = /** @__PURE__ @class */ (function (_super) {
|
|
29300
|
-
__extends$
|
|
29260
|
+
__extends$u(PdfRadialGradientBrush, _super);
|
|
29301
29261
|
//Constructor
|
|
29302
29262
|
/**
|
|
29303
29263
|
* Initializes a new instance of the `PdfRadialGradientBrush` class.
|
|
@@ -29573,7 +29533,7 @@ var PdfBorderOverlapStyle;
|
|
|
29573
29533
|
PdfBorderOverlapStyle[PdfBorderOverlapStyle["Inside"] = 1] = "Inside";
|
|
29574
29534
|
})(PdfBorderOverlapStyle || (PdfBorderOverlapStyle = {}));
|
|
29575
29535
|
|
|
29576
|
-
var __extends$
|
|
29536
|
+
var __extends$v = (undefined && undefined.__extends) || (function () {
|
|
29577
29537
|
var extendStatics = function (d, b) {
|
|
29578
29538
|
extendStatics = Object.setPrototypeOf ||
|
|
29579
29539
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -29669,7 +29629,7 @@ var PdfGridStyleBase = /** @__PURE__ @class */ (function () {
|
|
|
29669
29629
|
* `PdfGridStyle` class provides customization of the appearance for the 'PdfGrid'.
|
|
29670
29630
|
*/
|
|
29671
29631
|
var PdfGridStyle = /** @__PURE__ @class */ (function (_super) {
|
|
29672
|
-
__extends$
|
|
29632
|
+
__extends$v(PdfGridStyle, _super);
|
|
29673
29633
|
//constructor
|
|
29674
29634
|
/**
|
|
29675
29635
|
* Initialize a new instance for `PdfGridStyle` class.
|
|
@@ -29771,7 +29731,7 @@ var PdfGridStyle = /** @__PURE__ @class */ (function (_super) {
|
|
|
29771
29731
|
* `PdfGridCellStyle` class provides customization of the appearance for the 'PdfGridCell'.
|
|
29772
29732
|
*/
|
|
29773
29733
|
var PdfGridCellStyle = /** @__PURE__ @class */ (function (_super) {
|
|
29774
|
-
__extends$
|
|
29734
|
+
__extends$v(PdfGridCellStyle, _super);
|
|
29775
29735
|
/**
|
|
29776
29736
|
* Initializes a new instance of the `PdfGridCellStyle` class.
|
|
29777
29737
|
* @private
|
|
@@ -30411,6 +30371,27 @@ var PdfGridCell = /** @__PURE__ @class */ (function () {
|
|
|
30411
30371
|
* @private
|
|
30412
30372
|
*/
|
|
30413
30373
|
PdfGridCell.prototype.draw = function (graphics, bounds, cancelSubsequentSpans) {
|
|
30374
|
+
/*if (!this.row.grid.isSingleGrid)
|
|
30375
|
+
{
|
|
30376
|
+
//Check whether the Grid Span to Nextpage
|
|
30377
|
+
if ((this.remainingString != null) || (PdfGridLayouter.repeatRowIndex != -1))
|
|
30378
|
+
{
|
|
30379
|
+
this.DrawParentCells(graphics, bounds, true);
|
|
30380
|
+
}
|
|
30381
|
+
else if (this.row.grid.rows.count > 1)
|
|
30382
|
+
{
|
|
30383
|
+
for (let i : number = 0; i < this.row.grid.rows.count; i++)
|
|
30384
|
+
{
|
|
30385
|
+
if (this.row == this.row.grid.rows.getRow(i))
|
|
30386
|
+
{
|
|
30387
|
+
if (this.row.grid.rows.getRow(i).rowBreakHeight > 0)
|
|
30388
|
+
isrowbreak = true;
|
|
30389
|
+
if ((i > 0) && (isrowbreak))
|
|
30390
|
+
this.DrawParentCells(graphics, bounds, false);
|
|
30391
|
+
}
|
|
30392
|
+
}
|
|
30393
|
+
}
|
|
30394
|
+
} */
|
|
30414
30395
|
var result = null;
|
|
30415
30396
|
/*if (cancelSubsequentSpans)
|
|
30416
30397
|
{
|
|
@@ -31790,7 +31771,7 @@ var PdfGridHeaderCollection = /** @__PURE__ @class */ (function () {
|
|
|
31790
31771
|
return PdfGridHeaderCollection;
|
|
31791
31772
|
}());
|
|
31792
31773
|
|
|
31793
|
-
var __extends$
|
|
31774
|
+
var __extends$w = (undefined && undefined.__extends) || (function () {
|
|
31794
31775
|
var extendStatics = function (d, b) {
|
|
31795
31776
|
extendStatics = Object.setPrototypeOf ||
|
|
31796
31777
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -31803,11 +31784,8 @@ var __extends$37 = (undefined && undefined.__extends) || (function () {
|
|
|
31803
31784
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
31804
31785
|
};
|
|
31805
31786
|
})();
|
|
31806
|
-
/**
|
|
31807
|
-
* PdfGrid.ts class for EJ2-PDF
|
|
31808
|
-
*/
|
|
31809
31787
|
var PdfGrid = /** @__PURE__ @class */ (function (_super) {
|
|
31810
|
-
__extends$
|
|
31788
|
+
__extends$w(PdfGrid, _super);
|
|
31811
31789
|
//constructor
|
|
31812
31790
|
/**
|
|
31813
31791
|
* Initialize a new instance for `PdfGrid` class.
|
|
@@ -32531,7 +32509,7 @@ var PdfGrid = /** @__PURE__ @class */ (function (_super) {
|
|
|
32531
32509
|
return PdfGrid;
|
|
32532
32510
|
}(PdfLayoutElement));
|
|
32533
32511
|
|
|
32534
|
-
var __extends$
|
|
32512
|
+
var __extends$x = (undefined && undefined.__extends) || (function () {
|
|
32535
32513
|
var extendStatics = function (d, b) {
|
|
32536
32514
|
extendStatics = Object.setPrototypeOf ||
|
|
32537
32515
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -32549,7 +32527,7 @@ var __extends$36 = (undefined && undefined.__extends) || (function () {
|
|
|
32549
32527
|
*
|
|
32550
32528
|
*/
|
|
32551
32529
|
var PdfGridLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
32552
|
-
__extends$
|
|
32530
|
+
__extends$x(PdfGridLayouter, _super);
|
|
32553
32531
|
//constructor
|
|
32554
32532
|
/**
|
|
32555
32533
|
* Initialize a new instance for `PdfGrid` class.
|
|
@@ -33979,7 +33957,7 @@ var PdfGridLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
|
33979
33957
|
*/
|
|
33980
33958
|
//Internal declaration
|
|
33981
33959
|
var PdfGridLayoutResult = /** @__PURE__ @class */ (function (_super) {
|
|
33982
|
-
__extends$
|
|
33960
|
+
__extends$x(PdfGridLayoutResult, _super);
|
|
33983
33961
|
/**
|
|
33984
33962
|
* Constructor
|
|
33985
33963
|
* @private
|
|
@@ -33993,7 +33971,7 @@ var PdfGridLayoutResult = /** @__PURE__ @class */ (function (_super) {
|
|
|
33993
33971
|
* `PdfGridLayoutFormat` class represents a flexible grid that consists of columns and rows.
|
|
33994
33972
|
*/
|
|
33995
33973
|
var PdfGridLayoutFormat = /** @__PURE__ @class */ (function (_super) {
|
|
33996
|
-
__extends$
|
|
33974
|
+
__extends$x(PdfGridLayoutFormat, _super);
|
|
33997
33975
|
/**
|
|
33998
33976
|
* Initializes a new instance of the `PdfGridLayoutFormat` class.
|
|
33999
33977
|
* @private
|
|
@@ -34075,7 +34053,7 @@ var GridCellEventArgs = /** @__PURE__ @class */ (function () {
|
|
|
34075
34053
|
return GridCellEventArgs;
|
|
34076
34054
|
}());
|
|
34077
34055
|
var PdfGridBeginCellDrawEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
34078
|
-
__extends$
|
|
34056
|
+
__extends$x(PdfGridBeginCellDrawEventArgs, _super);
|
|
34079
34057
|
// Constructors
|
|
34080
34058
|
/**
|
|
34081
34059
|
* Initializes a new instance of the `StartCellLayoutEventArgs` class.
|
|
@@ -34118,7 +34096,7 @@ var PdfGridBeginCellDrawEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
|
34118
34096
|
return PdfGridBeginCellDrawEventArgs;
|
|
34119
34097
|
}(GridCellEventArgs));
|
|
34120
34098
|
var PdfGridEndCellDrawEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
34121
|
-
__extends$
|
|
34099
|
+
__extends$x(PdfGridEndCellDrawEventArgs, _super);
|
|
34122
34100
|
// Constructors
|
|
34123
34101
|
/**
|
|
34124
34102
|
* Initializes a new instance of the `PdfGridEndCellLayoutEventArgs` class.
|
|
@@ -34164,7 +34142,7 @@ var PdfCancelEventArgs = /** @__PURE__ @class */ (function () {
|
|
|
34164
34142
|
return PdfCancelEventArgs;
|
|
34165
34143
|
}());
|
|
34166
34144
|
var BeginPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
34167
|
-
__extends$
|
|
34145
|
+
__extends$x(BeginPageLayoutEventArgs, _super);
|
|
34168
34146
|
// Constructors
|
|
34169
34147
|
/**
|
|
34170
34148
|
* Initializes a new instance of the `BeginPageLayoutEventArgs` class with the specified rectangle and page.
|
|
@@ -34208,7 +34186,7 @@ var BeginPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
|
34208
34186
|
* `EndPageLayoutEventArgs` class is alternate for end page layout events.
|
|
34209
34187
|
*/
|
|
34210
34188
|
var EndPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
34211
|
-
__extends$
|
|
34189
|
+
__extends$x(EndPageLayoutEventArgs, _super);
|
|
34212
34190
|
// Constructors
|
|
34213
34191
|
/**
|
|
34214
34192
|
* Initializes a new instance of the `EndPageLayoutEventArgs` class. with the specified 'PdfLayoutResult'.
|
|
@@ -34251,7 +34229,7 @@ var EndPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
|
34251
34229
|
* `PdfGridBeginPageLayoutEventArgs` class is alternate for begin page layout events.
|
|
34252
34230
|
*/
|
|
34253
34231
|
var PdfGridBeginPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
34254
|
-
__extends$
|
|
34232
|
+
__extends$x(PdfGridBeginPageLayoutEventArgs, _super);
|
|
34255
34233
|
// Constructors
|
|
34256
34234
|
/**
|
|
34257
34235
|
* Initialize a new instance of `PdfGridBeginPageLayoutEventArgs` class.
|
|
@@ -34280,7 +34258,7 @@ var PdfGridBeginPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super)
|
|
|
34280
34258
|
* `PdfGridEndPageLayoutEventArgs` class is alternate for begin page layout events.
|
|
34281
34259
|
*/
|
|
34282
34260
|
var PdfGridEndPageLayoutEventArgs = /** @__PURE__ @class */ (function (_super) {
|
|
34283
|
-
__extends$
|
|
34261
|
+
__extends$x(PdfGridEndPageLayoutEventArgs, _super);
|
|
34284
34262
|
// Constructors
|
|
34285
34263
|
/**
|
|
34286
34264
|
* Initialize a new instance of `PdfGridEndPageLayoutEventArgs` class.
|
|
@@ -34331,7 +34309,7 @@ var RowLayoutResult = /** @__PURE__ @class */ (function () {
|
|
|
34331
34309
|
return RowLayoutResult;
|
|
34332
34310
|
}());
|
|
34333
34311
|
|
|
34334
|
-
var __extends$
|
|
34312
|
+
var __extends$y = (undefined && undefined.__extends) || (function () {
|
|
34335
34313
|
var extendStatics = function (d, b) {
|
|
34336
34314
|
extendStatics = Object.setPrototypeOf ||
|
|
34337
34315
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -34344,16 +34322,12 @@ var __extends$35 = (undefined && undefined.__extends) || (function () {
|
|
|
34344
34322
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34345
34323
|
};
|
|
34346
34324
|
})();
|
|
34347
|
-
/**
|
|
34348
|
-
* ShapeLayouter.ts class for EJ2-PDF
|
|
34349
|
-
* @private
|
|
34350
|
-
*/
|
|
34351
34325
|
/**
|
|
34352
34326
|
* ShapeLayouter class.
|
|
34353
34327
|
* @private
|
|
34354
34328
|
*/
|
|
34355
34329
|
var ShapeLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
34356
|
-
__extends$
|
|
34330
|
+
__extends$y(ShapeLayouter, _super);
|
|
34357
34331
|
// Constructors
|
|
34358
34332
|
/**
|
|
34359
34333
|
* Initializes a new instance of the `ShapeLayouter` class.
|
|
@@ -34599,7 +34573,7 @@ var ShapeLayoutResult = /** @__PURE__ @class */ (function () {
|
|
|
34599
34573
|
return ShapeLayoutResult;
|
|
34600
34574
|
}());
|
|
34601
34575
|
|
|
34602
|
-
var __extends$
|
|
34576
|
+
var __extends$z = (undefined && undefined.__extends) || (function () {
|
|
34603
34577
|
var extendStatics = function (d, b) {
|
|
34604
34578
|
extendStatics = Object.setPrototypeOf ||
|
|
34605
34579
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -34617,7 +34591,7 @@ var __extends$34 = (undefined && undefined.__extends) || (function () {
|
|
|
34617
34591
|
* @private
|
|
34618
34592
|
*/
|
|
34619
34593
|
var PdfShapeElement = /** @__PURE__ @class */ (function (_super) {
|
|
34620
|
-
__extends$
|
|
34594
|
+
__extends$z(PdfShapeElement, _super);
|
|
34621
34595
|
function PdfShapeElement() {
|
|
34622
34596
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
34623
34597
|
}
|
|
@@ -34671,7 +34645,7 @@ var PdfShapeElement = /** @__PURE__ @class */ (function (_super) {
|
|
|
34671
34645
|
return PdfShapeElement;
|
|
34672
34646
|
}(PdfLayoutElement));
|
|
34673
34647
|
|
|
34674
|
-
var __extends$
|
|
34648
|
+
var __extends$A = (undefined && undefined.__extends) || (function () {
|
|
34675
34649
|
var extendStatics = function (d, b) {
|
|
34676
34650
|
extendStatics = Object.setPrototypeOf ||
|
|
34677
34651
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -34684,14 +34658,11 @@ var __extends$33 = (undefined && undefined.__extends) || (function () {
|
|
|
34684
34658
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34685
34659
|
};
|
|
34686
34660
|
})();
|
|
34687
|
-
/**
|
|
34688
|
-
* PdfDrawElement.ts class for EJ2-PDF
|
|
34689
|
-
*/
|
|
34690
34661
|
/**
|
|
34691
34662
|
* Represents a base class for all page graphics elements.
|
|
34692
34663
|
*/
|
|
34693
34664
|
var PdfDrawElement = /** @__PURE__ @class */ (function (_super) {
|
|
34694
|
-
__extends$
|
|
34665
|
+
__extends$A(PdfDrawElement, _super);
|
|
34695
34666
|
/**
|
|
34696
34667
|
* Initializes a new instance of the `PdfDrawElement` class.
|
|
34697
34668
|
* @protected
|
|
@@ -34721,7 +34692,7 @@ var PdfDrawElement = /** @__PURE__ @class */ (function (_super) {
|
|
|
34721
34692
|
return PdfDrawElement;
|
|
34722
34693
|
}(PdfShapeElement));
|
|
34723
34694
|
|
|
34724
|
-
var __extends$
|
|
34695
|
+
var __extends$B = (undefined && undefined.__extends) || (function () {
|
|
34725
34696
|
var extendStatics = function (d, b) {
|
|
34726
34697
|
extendStatics = Object.setPrototypeOf ||
|
|
34727
34698
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -34734,14 +34705,11 @@ var __extends$32 = (undefined && undefined.__extends) || (function () {
|
|
|
34734
34705
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34735
34706
|
};
|
|
34736
34707
|
})();
|
|
34737
|
-
/**
|
|
34738
|
-
* PdfFillElement.ts class for EJ2-PDF
|
|
34739
|
-
*/
|
|
34740
34708
|
/**
|
|
34741
34709
|
* Represents a base class for all page graphics elements.
|
|
34742
34710
|
*/
|
|
34743
34711
|
var PdfFillElement = /** @__PURE__ @class */ (function (_super) {
|
|
34744
|
-
__extends$
|
|
34712
|
+
__extends$B(PdfFillElement, _super);
|
|
34745
34713
|
/**
|
|
34746
34714
|
* Initializes a new instance of the `PdfFillElement` class.
|
|
34747
34715
|
* @protected
|
|
@@ -34754,9 +34722,7 @@ var PdfFillElement = /** @__PURE__ @class */ (function (_super) {
|
|
|
34754
34722
|
* @private
|
|
34755
34723
|
*/
|
|
34756
34724
|
_this.mbrush = null;
|
|
34757
|
-
if (typeof arg1 === 'undefined')
|
|
34758
|
-
//
|
|
34759
|
-
}
|
|
34725
|
+
if (typeof arg1 === 'undefined') ;
|
|
34760
34726
|
else if (arg1 instanceof PdfPen) {
|
|
34761
34727
|
_this = _super.call(this, arg1) || this;
|
|
34762
34728
|
}
|
|
@@ -34791,7 +34757,7 @@ var PdfFillElement = /** @__PURE__ @class */ (function (_super) {
|
|
|
34791
34757
|
return PdfFillElement;
|
|
34792
34758
|
}(PdfDrawElement));
|
|
34793
34759
|
|
|
34794
|
-
var __extends$
|
|
34760
|
+
var __extends$C = (undefined && undefined.__extends) || (function () {
|
|
34795
34761
|
var extendStatics = function (d, b) {
|
|
34796
34762
|
extendStatics = Object.setPrototypeOf ||
|
|
34797
34763
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -34804,15 +34770,12 @@ var __extends$31 = (undefined && undefined.__extends) || (function () {
|
|
|
34804
34770
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
34805
34771
|
};
|
|
34806
34772
|
})();
|
|
34807
|
-
/**
|
|
34808
|
-
* Path.ts class for EJ2-PDF
|
|
34809
|
-
*/
|
|
34810
34773
|
/**
|
|
34811
34774
|
* `PdfPath` class Implements graphics path, which is a sequence of primitive graphics elements.
|
|
34812
34775
|
* @private
|
|
34813
34776
|
*/
|
|
34814
34777
|
var PdfPath = /** @__PURE__ @class */ (function (_super) {
|
|
34815
|
-
__extends$
|
|
34778
|
+
__extends$C(PdfPath, _super);
|
|
34816
34779
|
/**
|
|
34817
34780
|
* Initializes a new instance of the `PdfPath` class.
|
|
34818
34781
|
* @public
|
|
@@ -34851,9 +34814,7 @@ var PdfPath = /** @__PURE__ @class */ (function (_super) {
|
|
|
34851
34814
|
* @private
|
|
34852
34815
|
*/
|
|
34853
34816
|
_this.isXps = false;
|
|
34854
|
-
if (typeof arg1 === 'undefined')
|
|
34855
|
-
//
|
|
34856
|
-
}
|
|
34817
|
+
if (typeof arg1 === 'undefined') ;
|
|
34857
34818
|
else if (arg1 instanceof PdfPen) {
|
|
34858
34819
|
_this = _super.call(this, arg1) || this;
|
|
34859
34820
|
if (arg2 instanceof PdfBrush) {
|
|
@@ -35291,7 +35252,7 @@ var PdfPath = /** @__PURE__ @class */ (function (_super) {
|
|
|
35291
35252
|
return PdfPath;
|
|
35292
35253
|
}(PdfFillElement));
|
|
35293
35254
|
|
|
35294
|
-
var __extends$
|
|
35255
|
+
var __extends$D = (undefined && undefined.__extends) || (function () {
|
|
35295
35256
|
var extendStatics = function (d, b) {
|
|
35296
35257
|
extendStatics = Object.setPrototypeOf ||
|
|
35297
35258
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -35309,7 +35270,7 @@ var __extends$41 = (undefined && undefined.__extends) || (function () {
|
|
|
35309
35270
|
* @private
|
|
35310
35271
|
*/
|
|
35311
35272
|
var PdfRectangleArea = /** @__PURE__ @class */ (function (_super) {
|
|
35312
|
-
__extends$
|
|
35273
|
+
__extends$D(PdfRectangleArea, _super);
|
|
35313
35274
|
/* tslint:disable-next-line:max-line-length */
|
|
35314
35275
|
function PdfRectangleArea(arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
35315
35276
|
var _this = _super.call(this) || this;
|
|
@@ -35319,9 +35280,7 @@ var PdfRectangleArea = /** @__PURE__ @class */ (function (_super) {
|
|
|
35319
35280
|
* @public
|
|
35320
35281
|
*/
|
|
35321
35282
|
_this.bounds = new RectangleF(0, 0, 0, 0);
|
|
35322
|
-
if (typeof arg1 === 'undefined')
|
|
35323
|
-
//
|
|
35324
|
-
}
|
|
35283
|
+
if (typeof arg1 === 'undefined') ;
|
|
35325
35284
|
else if (arg1 instanceof PdfPen) {
|
|
35326
35285
|
_this = _super.call(this, arg1, arg2) || this;
|
|
35327
35286
|
if (arg3 instanceof RectangleF) {
|
|
@@ -35403,7 +35362,7 @@ var PdfRectangleArea = /** @__PURE__ @class */ (function (_super) {
|
|
|
35403
35362
|
return PdfRectangleArea;
|
|
35404
35363
|
}(PdfFillElement));
|
|
35405
35364
|
|
|
35406
|
-
var __extends$
|
|
35365
|
+
var __extends$E = (undefined && undefined.__extends) || (function () {
|
|
35407
35366
|
var extendStatics = function (d, b) {
|
|
35408
35367
|
extendStatics = Object.setPrototypeOf ||
|
|
35409
35368
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -35421,7 +35380,7 @@ var __extends$40 = (undefined && undefined.__extends) || (function () {
|
|
|
35421
35380
|
* @private
|
|
35422
35381
|
*/
|
|
35423
35382
|
var PdfEllipsePart = /** @__PURE__ @class */ (function (_super) {
|
|
35424
|
-
__extends$
|
|
35383
|
+
__extends$E(PdfEllipsePart, _super);
|
|
35425
35384
|
/* tslint:disable-next-line:max-line-length */
|
|
35426
35385
|
function PdfEllipsePart(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) {
|
|
35427
35386
|
var _this = _super.call(this) || this;
|
|
@@ -35436,9 +35395,7 @@ var PdfEllipsePart = /** @__PURE__ @class */ (function (_super) {
|
|
|
35436
35395
|
* @public
|
|
35437
35396
|
*/
|
|
35438
35397
|
_this.sweepAngle = 0;
|
|
35439
|
-
if (typeof arg1 === 'undefined')
|
|
35440
|
-
//
|
|
35441
|
-
}
|
|
35398
|
+
if (typeof arg1 === 'undefined') ;
|
|
35442
35399
|
else if (arg1 instanceof RectangleF && typeof arg2 !== 'undefined' && typeof arg3 !== 'undefined') {
|
|
35443
35400
|
_this = _super.call(this, arg1) || this;
|
|
35444
35401
|
_this.startAngle = arg2;
|
|
@@ -35466,7 +35423,7 @@ var PdfEllipsePart = /** @__PURE__ @class */ (function (_super) {
|
|
|
35466
35423
|
return PdfEllipsePart;
|
|
35467
35424
|
}(PdfRectangleArea));
|
|
35468
35425
|
|
|
35469
|
-
var __extends$
|
|
35426
|
+
var __extends$F = (undefined && undefined.__extends) || (function () {
|
|
35470
35427
|
var extendStatics = function (d, b) {
|
|
35471
35428
|
extendStatics = Object.setPrototypeOf ||
|
|
35472
35429
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -35479,15 +35436,12 @@ var __extends$39 = (undefined && undefined.__extends) || (function () {
|
|
|
35479
35436
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
35480
35437
|
};
|
|
35481
35438
|
})();
|
|
35482
|
-
/**
|
|
35483
|
-
* arc.ts class for EJ2-PDF
|
|
35484
|
-
*/
|
|
35485
35439
|
/**
|
|
35486
35440
|
* `PdfArc` class Implements graphics arc, which is a sequence of primitive graphics elements.
|
|
35487
35441
|
* @private
|
|
35488
35442
|
*/
|
|
35489
35443
|
var PdfArc = /** @__PURE__ @class */ (function (_super) {
|
|
35490
|
-
__extends$
|
|
35444
|
+
__extends$F(PdfArc, _super);
|
|
35491
35445
|
/* tslint:disable-next-line:max-line-length */
|
|
35492
35446
|
function PdfArc(arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
35493
35447
|
var _this = this;
|
|
@@ -35553,7 +35507,7 @@ var PdfArc = /** @__PURE__ @class */ (function (_super) {
|
|
|
35553
35507
|
return PdfArc;
|
|
35554
35508
|
}(PdfEllipsePart));
|
|
35555
35509
|
|
|
35556
|
-
var __extends$
|
|
35510
|
+
var __extends$G = (undefined && undefined.__extends) || (function () {
|
|
35557
35511
|
var extendStatics = function (d, b) {
|
|
35558
35512
|
extendStatics = Object.setPrototypeOf ||
|
|
35559
35513
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -35566,12 +35520,9 @@ var __extends$42 = (undefined && undefined.__extends) || (function () {
|
|
|
35566
35520
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
35567
35521
|
};
|
|
35568
35522
|
})();
|
|
35569
|
-
/**
|
|
35570
|
-
* PdfTrueTypeFont.ts class for EJ2-PDF
|
|
35571
|
-
*/
|
|
35572
35523
|
//https://www.giftofspeed.com/base64-encoder/
|
|
35573
35524
|
var PdfTrueTypeFont = /** @__PURE__ @class */ (function (_super) {
|
|
35574
|
-
__extends$
|
|
35525
|
+
__extends$G(PdfTrueTypeFont, _super);
|
|
35575
35526
|
function PdfTrueTypeFont(base64String, size, style) {
|
|
35576
35527
|
var _this = _super.call(this, size) || this;
|
|
35577
35528
|
/**
|
|
@@ -35832,9 +35783,6 @@ var PdfPageTemplateElement = /** @__PURE__ @class */ (function () {
|
|
|
35832
35783
|
if (this.type === TemplateType.None) {
|
|
35833
35784
|
this.currentLocation = value;
|
|
35834
35785
|
}
|
|
35835
|
-
else {
|
|
35836
|
-
//
|
|
35837
|
-
}
|
|
35838
35786
|
},
|
|
35839
35787
|
enumerable: true,
|
|
35840
35788
|
configurable: true
|
|
@@ -35852,9 +35800,6 @@ var PdfPageTemplateElement = /** @__PURE__ @class */ (function () {
|
|
|
35852
35800
|
if (this.type === TemplateType.None) {
|
|
35853
35801
|
this.currentLocation.x = value;
|
|
35854
35802
|
}
|
|
35855
|
-
else {
|
|
35856
|
-
//
|
|
35857
|
-
}
|
|
35858
35803
|
},
|
|
35859
35804
|
enumerable: true,
|
|
35860
35805
|
configurable: true
|
|
@@ -35872,9 +35817,6 @@ var PdfPageTemplateElement = /** @__PURE__ @class */ (function () {
|
|
|
35872
35817
|
if (this.type === TemplateType.None) {
|
|
35873
35818
|
this.currentLocation.y = value;
|
|
35874
35819
|
}
|
|
35875
|
-
else {
|
|
35876
|
-
//
|
|
35877
|
-
}
|
|
35878
35820
|
},
|
|
35879
35821
|
enumerable: true,
|
|
35880
35822
|
configurable: true
|
|
@@ -36355,10 +36297,5 @@ var PdfPageTemplateElement = /** @__PURE__ @class */ (function () {
|
|
|
36355
36297
|
return PdfPageTemplateElement;
|
|
36356
36298
|
}());
|
|
36357
36299
|
|
|
36358
|
-
|
|
36359
|
-
* Pdf all modules
|
|
36360
|
-
* @hidden
|
|
36361
|
-
*/
|
|
36362
|
-
|
|
36363
|
-
export { PdfAction, PdfUriAction, PdfActionLinkAnnotation, PdfAnnotation, PdfAnnotationCollection, PdfDocumentLinkAnnotation, PdfLinkAnnotation, PdfTextWebLink, PdfUriAnnotation, Dictionary, defaultToString, PdfCatalog, PdfDocument, PdfDocumentBase, PdfDocumentTemplate, PdfViewerPreferences, PdfPageMode, PdfPageLayout, DuplexMode, PageScalingMode, PdfPageNumberField, PdfCompositeField, PdfPageCountField, PointF, SizeF, RectangleF, Rectangle, PdfCacheCollection, PdfCollection, PdfDestination, PdfFunction, PdfSampledFunction, PdfDestinationMode, ProcedureSets, PdfHorizontalAlignment, PdfVerticalAlignment, PdfTextAlignment, TextRenderingMode, PdfLineJoin, PdfLineCap, PdfDashStyle, PdfFillMode, PdfColorSpace, PdfBlendMode, PdfGraphicsUnit, PdfGridImagePosition, PdfTextDirection, PdfColor, PdfGraphics, GetResourceEventHandler, PdfGraphicsState, PdfMargins, PdfPen, PdfResources, Guid, PdfTransformationMatrix, Matrix, PdfBrush, PdfBrushes, PdfSolidBrush, PdfLinearGradientBrush, PdfRadialGradientBrush, PdfTilingBrush, PdfGradientBrush, PdfColorBlend, PdfBlend, PdfTemplate, PdfLayoutElement, PdfPath, PdfArc, PdfTextElement, ElementLayouter, PdfLayoutFormat, PdfLayoutParams, PdfLayoutResult, TextLayouter, TextPageLayoutResult, PdfTextLayoutResult, PdfLayoutType, PdfLayoutBreakType, PathPointType, PdfFontStyle, PdfFontFamily, PdfFontType, PdfWordWrapType, PdfSubSuperScript, FontEncoding, TtfCmapFormat, TtfCmapEncoding, TtfPlatformID, TtfMicrosoftEncodingID, TtfMacintoshEncodingID, FontDescriptorFlags, TtfCompositeGlyphFlags, PdfFont, PdfFontMetrics, WidthTable, StandardWidthTable, PdfStandardFont, PdfStandardFontMetricsFactory, PdfStringFormat, PdfStringLayouter, PdfStringLayoutResult, LineInfo, LineType, StringTokenizer, PdfTrueTypeFont, RtlRenderer, ArabicShapeRenderer, ArabicShape, Bidi, RtlCharacters, ByteArray, ImageFormat, ImageDecoder, PdfBitmap, PdfImage, PdfTransparency, ObjectStatus, ObjectType, PdfCrossTable, RegisteredObject, DictionaryProperties, PdfMainObjectCollection, ObjectInfo, Operators, PdfStreamWriter, PdfWriter, PdfPageOrientation, PdfPageRotateAngle, PdfNumberStyle, PdfDockStyle, PdfAlignmentStyle, TemplateType, PageAddedEventArgs, PdfDocumentPageCollection, PdfPage, PdfPageBase, PdfPageLayer, PdfPageLayerCollection, PdfPageSettings, PdfPageSize, PdfPageTemplateElement, PdfSection, PageSettingsState, PdfSectionCollection, PdfSectionPageCollection, PdfSectionTemplate, PdfArray, PdfDictionary, SaveSectionCollectionEventHandler, SaveDescendantFontEventHandler, SaveFontDictionaryEventHandler, SaveAnnotationEventHandler, SaveSectionEventHandler, SaveTemplateEventHandler, PdfName, PdfNumber, PdfReference, PdfReferenceHolder, PdfStream, SaveCmapEventHandler, SaveFontProgramEventHandler, InternalEnum, PdfString, PdfGridStyleBase, PdfGridStyle, PdfGridCellStyle, PdfGridRowStyle, PdfHorizontalOverflowType, PdfBorders, PdfPaddings, PdfBorderOverlapStyle, PdfGridLayouter, PdfGridLayoutResult, PdfGridLayoutFormat, GridCellEventArgs, PdfGridBeginCellDrawEventArgs, PdfGridEndCellDrawEventArgs, PdfCancelEventArgs, BeginPageLayoutEventArgs, EndPageLayoutEventArgs, PdfGridBeginPageLayoutEventArgs, PdfGridEndPageLayoutEventArgs, RowLayoutResult, PdfGrid, PdfGridColumn, PdfGridColumnCollection, PdfGridRow, PdfGridRowCollection, PdfGridHeaderCollection, PdfGridCell, PdfGridCellCollection };
|
|
36300
|
+
export { ArabicShape, ArabicShapeRenderer, BeginPageLayoutEventArgs, Bidi, ByteArray, Dictionary, DictionaryProperties, DuplexMode, ElementLayouter, EndPageLayoutEventArgs, FontDescriptorFlags, FontEncoding, GetResourceEventHandler, GridCellEventArgs, Guid, ImageDecoder, ImageFormat, InternalEnum, LineInfo, LineType, Matrix, ObjectInfo, ObjectStatus, ObjectType, Operators, PageAddedEventArgs, PageScalingMode, PageSettingsState, PathPointType, PdfAction, PdfActionLinkAnnotation, PdfAlignmentStyle, PdfAnnotation, PdfAnnotationCollection, PdfArc, PdfArray, PdfBitmap, PdfBlend, PdfBlendMode, PdfBorderOverlapStyle, PdfBorders, PdfBrush, PdfBrushes, PdfCacheCollection, PdfCancelEventArgs, PdfCatalog, PdfCollection, PdfColor, PdfColorBlend, PdfColorSpace, PdfCompositeField, PdfCrossTable, PdfDashStyle, PdfDestination, PdfDestinationMode, PdfDictionary, PdfDockStyle, PdfDocument, PdfDocumentBase, PdfDocumentLinkAnnotation, PdfDocumentPageCollection, PdfDocumentTemplate, PdfFillMode, PdfFont, PdfFontFamily, PdfFontMetrics, PdfFontStyle, PdfFontType, PdfFunction, PdfGradientBrush, PdfGraphics, PdfGraphicsState, PdfGraphicsUnit, PdfGrid, PdfGridBeginCellDrawEventArgs, PdfGridBeginPageLayoutEventArgs, PdfGridCell, PdfGridCellCollection, PdfGridCellStyle, PdfGridColumn, PdfGridColumnCollection, PdfGridEndCellDrawEventArgs, PdfGridEndPageLayoutEventArgs, PdfGridHeaderCollection, PdfGridImagePosition, PdfGridLayoutFormat, PdfGridLayoutResult, PdfGridLayouter, PdfGridRow, PdfGridRowCollection, PdfGridRowStyle, PdfGridStyle, PdfGridStyleBase, PdfHorizontalAlignment, PdfHorizontalOverflowType, PdfImage, PdfLayoutBreakType, PdfLayoutElement, PdfLayoutFormat, PdfLayoutParams, PdfLayoutResult, PdfLayoutType, PdfLineCap, PdfLineJoin, PdfLinearGradientBrush, PdfLinkAnnotation, PdfMainObjectCollection, PdfMargins, PdfName, PdfNumber, PdfNumberStyle, PdfPaddings, PdfPage, PdfPageBase, PdfPageCountField, PdfPageLayer, PdfPageLayerCollection, PdfPageLayout, PdfPageMode, PdfPageNumberField, PdfPageOrientation, PdfPageRotateAngle, PdfPageSettings, PdfPageSize, PdfPageTemplateElement, PdfPath, PdfPen, PdfRadialGradientBrush, PdfReference, PdfReferenceHolder, PdfResources, PdfSampledFunction, PdfSection, PdfSectionCollection, PdfSectionPageCollection, PdfSectionTemplate, PdfSolidBrush, PdfStandardFont, PdfStandardFontMetricsFactory, PdfStream, PdfStreamWriter, PdfString, PdfStringFormat, PdfStringLayoutResult, PdfStringLayouter, PdfSubSuperScript, PdfTemplate, PdfTextAlignment, PdfTextDirection, PdfTextElement, PdfTextLayoutResult, PdfTextWebLink, PdfTilingBrush, PdfTransformationMatrix, PdfTransparency, PdfTrueTypeFont, PdfUriAction, PdfUriAnnotation, PdfVerticalAlignment, PdfViewerPreferences, PdfWordWrapType, PdfWriter, PointF, ProcedureSets, Rectangle, RectangleF, RegisteredObject, RowLayoutResult, RtlCharacters, RtlRenderer, SaveAnnotationEventHandler, SaveCmapEventHandler, SaveDescendantFontEventHandler, SaveFontDictionaryEventHandler, SaveFontProgramEventHandler, SaveSectionCollectionEventHandler, SaveSectionEventHandler, SaveTemplateEventHandler, SizeF, StandardWidthTable, StringTokenizer, TemplateType, TextLayouter, TextPageLayoutResult, TextRenderingMode, TtfCmapEncoding, TtfCmapFormat, TtfCompositeGlyphFlags, TtfMacintoshEncodingID, TtfMicrosoftEncodingID, TtfPlatformID, WidthTable, defaultToString };
|
|
36364
36301
|
//# sourceMappingURL=ej2-pdf-export.es5.js.map
|