@syncfusion/ej2-pdf-export 20.2.43 → 20.3.47

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.
Files changed (154) hide show
  1. package/dist/ej2-pdf-export.min.js +10 -0
  2. package/dist/ej2-pdf-export.umd.min.js +1 -1
  3. package/dist/global/ej2-pdf-export.min.js +1 -1
  4. package/dist/global/index.d.ts +1 -1
  5. package/dist/ts/implementation/actions/action.ts +76 -0
  6. package/dist/ts/implementation/actions/uri-action.ts +52 -0
  7. package/dist/ts/implementation/annotations/action-link-annotation.ts +43 -0
  8. package/dist/ts/implementation/annotations/annotation-collection.ts +159 -0
  9. package/dist/ts/implementation/annotations/annotation.ts +241 -0
  10. package/dist/ts/implementation/annotations/document-link-annotation.ts +118 -0
  11. package/dist/ts/implementation/annotations/link-annotation.ts +32 -0
  12. package/dist/ts/implementation/annotations/pdf-text-web-link.ts +265 -0
  13. package/dist/ts/implementation/annotations/uri-annotation.ts +86 -0
  14. package/dist/ts/implementation/collections/dictionary.ts +150 -0
  15. package/dist/ts/implementation/collections/object-object-pair/dictionary.ts +125 -0
  16. package/dist/ts/implementation/collections/utils.ts +38 -0
  17. package/dist/ts/implementation/document/automatic-fields/automatic-field-info-collection.ts +39 -0
  18. package/dist/ts/implementation/document/automatic-fields/automatic-field-info.ts +108 -0
  19. package/dist/ts/implementation/document/automatic-fields/automatic-field.ts +127 -0
  20. package/dist/ts/implementation/document/automatic-fields/composite-field.ts +76 -0
  21. package/dist/ts/implementation/document/automatic-fields/multiple-value-field.ts +37 -0
  22. package/dist/ts/implementation/document/automatic-fields/page-count-field.ts +75 -0
  23. package/dist/ts/implementation/document/automatic-fields/pdf-numbers-convertor.ts +157 -0
  24. package/dist/ts/implementation/document/automatic-fields/pdf-page-number-field.ts +82 -0
  25. package/dist/ts/implementation/document/automatic-fields/pdf-template-value-pair.ts +60 -0
  26. package/dist/ts/implementation/document/automatic-fields/single-value-field.ts +48 -0
  27. package/dist/ts/implementation/document/pdf-catalog.ts +52 -0
  28. package/dist/ts/implementation/document/pdf-document-base.ts +166 -0
  29. package/dist/ts/implementation/document/pdf-document-template.ts +310 -0
  30. package/dist/ts/implementation/document/pdf-document.ts +342 -0
  31. package/dist/ts/implementation/drawing/pdf-drawing.ts +218 -0
  32. package/dist/ts/implementation/general/enum.ts +21 -0
  33. package/dist/ts/implementation/general/functions/pdf-function.ts +66 -0
  34. package/dist/ts/implementation/general/functions/pdf-sampled-function.ts +62 -0
  35. package/dist/ts/implementation/general/pdf-cache-collection.ts +97 -0
  36. package/dist/ts/implementation/general/pdf-collection.ts +41 -0
  37. package/dist/ts/implementation/general/pdf-destination.ts +170 -0
  38. package/dist/ts/implementation/graphics/brushes/enum.ts +237 -0
  39. package/dist/ts/implementation/graphics/brushes/pdf-blend.ts +294 -0
  40. package/dist/ts/implementation/graphics/brushes/pdf-brush.ts +68 -0
  41. package/dist/ts/implementation/graphics/brushes/pdf-brushes.ts +2438 -0
  42. package/dist/ts/implementation/graphics/brushes/pdf-color-blend.ts +295 -0
  43. package/dist/ts/implementation/graphics/brushes/pdf-gradient-brush.ts +311 -0
  44. package/dist/ts/implementation/graphics/brushes/pdf-linear-gradient-brush.ts +406 -0
  45. package/dist/ts/implementation/graphics/brushes/pdf-radial-gradient-brush.ts +290 -0
  46. package/dist/ts/implementation/graphics/brushes/pdf-solid-brush.ts +107 -0
  47. package/dist/ts/implementation/graphics/brushes/pdf-tiling-brush.ts +304 -0
  48. package/dist/ts/implementation/graphics/constants.ts +31 -0
  49. package/dist/ts/implementation/graphics/enum.ts +413 -0
  50. package/dist/ts/implementation/graphics/figures/arc.ts +133 -0
  51. package/dist/ts/implementation/graphics/figures/base/draw-element.ts +59 -0
  52. package/dist/ts/implementation/graphics/figures/base/element-layouter.ts +260 -0
  53. package/dist/ts/implementation/graphics/figures/base/fill-element.ts +72 -0
  54. package/dist/ts/implementation/graphics/figures/base/graphics-element.ts +34 -0
  55. package/dist/ts/implementation/graphics/figures/base/pdf-shape-element.ts +69 -0
  56. package/dist/ts/implementation/graphics/figures/base/shape-layouter.ts +276 -0
  57. package/dist/ts/implementation/graphics/figures/base/text-layouter.ts +205 -0
  58. package/dist/ts/implementation/graphics/figures/ellipse-part.ts +76 -0
  59. package/dist/ts/implementation/graphics/figures/enum.ts +80 -0
  60. package/dist/ts/implementation/graphics/figures/layout-element.ts +132 -0
  61. package/dist/ts/implementation/graphics/figures/path.ts +646 -0
  62. package/dist/ts/implementation/graphics/figures/pdf-template.ts +205 -0
  63. package/dist/ts/implementation/graphics/figures/rectangle-area.ts +108 -0
  64. package/dist/ts/implementation/graphics/figures/text-element.ts +445 -0
  65. package/dist/ts/implementation/graphics/fonts/enum.ts +385 -0
  66. package/dist/ts/implementation/graphics/fonts/pdf-font-metrics.ts +248 -0
  67. package/dist/ts/implementation/graphics/fonts/pdf-font.ts +316 -0
  68. package/dist/ts/implementation/graphics/fonts/pdf-standard-font-metrics-factory.ts +606 -0
  69. package/dist/ts/implementation/graphics/fonts/pdf-standard-font.ts +243 -0
  70. package/dist/ts/implementation/graphics/fonts/pdf-string-format.ts +474 -0
  71. package/dist/ts/implementation/graphics/fonts/pdf-true-type-font.ts +165 -0
  72. package/dist/ts/implementation/graphics/fonts/rtl/rtl-bidirectional.ts +958 -0
  73. package/dist/ts/implementation/graphics/fonts/rtl/rtl-text-shape.ts +374 -0
  74. package/dist/ts/implementation/graphics/fonts/rtl-renderer.ts +255 -0
  75. package/dist/ts/implementation/graphics/fonts/string-layouter.ts +617 -0
  76. package/dist/ts/implementation/graphics/fonts/string-tokenizer.ts +275 -0
  77. package/dist/ts/implementation/graphics/fonts/ttf-OS2-Table.ts +206 -0
  78. package/dist/ts/implementation/graphics/fonts/ttf-apple-cmap-sub-table.ts +18 -0
  79. package/dist/ts/implementation/graphics/fonts/ttf-cmap-sub-table.ts +18 -0
  80. package/dist/ts/implementation/graphics/fonts/ttf-cmap-table.ts +14 -0
  81. package/dist/ts/implementation/graphics/fonts/ttf-glyph-header.ts +26 -0
  82. package/dist/ts/implementation/graphics/fonts/ttf-glyph-info.ts +35 -0
  83. package/dist/ts/implementation/graphics/fonts/ttf-head-table.ts +94 -0
  84. package/dist/ts/implementation/graphics/fonts/ttf-horizontal-header-table.ts +56 -0
  85. package/dist/ts/implementation/graphics/fonts/ttf-loca-table.ts +10 -0
  86. package/dist/ts/implementation/graphics/fonts/ttf-long-hor-metric.ts +14 -0
  87. package/dist/ts/implementation/graphics/fonts/ttf-metrics.ts +106 -0
  88. package/dist/ts/implementation/graphics/fonts/ttf-microsoft-cmap-sub-table.ts +58 -0
  89. package/dist/ts/implementation/graphics/fonts/ttf-name-record.ts +33 -0
  90. package/dist/ts/implementation/graphics/fonts/ttf-name-table.ts +22 -0
  91. package/dist/ts/implementation/graphics/fonts/ttf-post-table.ts +42 -0
  92. package/dist/ts/implementation/graphics/fonts/ttf-reader.ts +1254 -0
  93. package/dist/ts/implementation/graphics/fonts/ttf-table-info.ts +26 -0
  94. package/dist/ts/implementation/graphics/fonts/ttf-trimmed-cmap-sub-table.ts +26 -0
  95. package/dist/ts/implementation/graphics/fonts/unicode-true-type-font.ts +577 -0
  96. package/dist/ts/implementation/graphics/images/byte-array.ts +137 -0
  97. package/dist/ts/implementation/graphics/images/image-decoder.ts +437 -0
  98. package/dist/ts/implementation/graphics/images/pdf-bitmap.ts +110 -0
  99. package/dist/ts/implementation/graphics/images/pdf-image.ts +132 -0
  100. package/dist/ts/implementation/graphics/pdf-color.ts +478 -0
  101. package/dist/ts/implementation/graphics/pdf-graphics.ts +2424 -0
  102. package/dist/ts/implementation/graphics/pdf-margins.ts +124 -0
  103. package/dist/ts/implementation/graphics/pdf-pen.ts +370 -0
  104. package/dist/ts/implementation/graphics/pdf-resources.ts +300 -0
  105. package/dist/ts/implementation/graphics/pdf-transformation-matrix.ts +246 -0
  106. package/dist/ts/implementation/graphics/pdf-transparency.ts +93 -0
  107. package/dist/ts/implementation/graphics/unit-convertor.ts +96 -0
  108. package/dist/ts/implementation/input-output/big-endian-writer.ts +121 -0
  109. package/dist/ts/implementation/input-output/cross-table.ts +21 -0
  110. package/dist/ts/implementation/input-output/enum.ts +16 -0
  111. package/dist/ts/implementation/input-output/pdf-cross-table.ts +524 -0
  112. package/dist/ts/implementation/input-output/pdf-dictionary-properties.ts +515 -0
  113. package/dist/ts/implementation/input-output/pdf-main-object-collection.ts +194 -0
  114. package/dist/ts/implementation/input-output/pdf-operators.ts +363 -0
  115. package/dist/ts/implementation/input-output/pdf-stream-writer.ts +681 -0
  116. package/dist/ts/implementation/input-output/pdf-writer.ts +88 -0
  117. package/dist/ts/implementation/pages/enum.ts +201 -0
  118. package/dist/ts/implementation/pages/page-added-event-arguments.ts +39 -0
  119. package/dist/ts/implementation/pages/pdf-document-page-collection.ts +180 -0
  120. package/dist/ts/implementation/pages/pdf-page-base.ts +181 -0
  121. package/dist/ts/implementation/pages/pdf-page-layer-collection.ts +348 -0
  122. package/dist/ts/implementation/pages/pdf-page-layer.ts +271 -0
  123. package/dist/ts/implementation/pages/pdf-page-settings.ts +192 -0
  124. package/dist/ts/implementation/pages/pdf-page-size.ts +162 -0
  125. package/dist/ts/implementation/pages/pdf-page-template-element.ts +659 -0
  126. package/dist/ts/implementation/pages/pdf-page.ts +235 -0
  127. package/dist/ts/implementation/pages/pdf-section-collection.ts +187 -0
  128. package/dist/ts/implementation/pages/pdf-section-page-collection.ts +61 -0
  129. package/dist/ts/implementation/pages/pdf-section-templates.ts +96 -0
  130. package/dist/ts/implementation/pages/pdf-section.ts +644 -0
  131. package/dist/ts/implementation/primitives/pdf-array.ts +386 -0
  132. package/dist/ts/implementation/primitives/pdf-boolean.ts +119 -0
  133. package/dist/ts/implementation/primitives/pdf-dictionary.ts +513 -0
  134. package/dist/ts/implementation/primitives/pdf-name.ts +218 -0
  135. package/dist/ts/implementation/primitives/pdf-number.ts +165 -0
  136. package/dist/ts/implementation/primitives/pdf-reference.ts +430 -0
  137. package/dist/ts/implementation/primitives/pdf-stream.ts +336 -0
  138. package/dist/ts/implementation/primitives/pdf-string.ts +397 -0
  139. package/dist/ts/implementation/structured-elements/grid/layout/grid-layouter.ts +2027 -0
  140. package/dist/ts/implementation/structured-elements/grid/pdf-grid-cell.ts +1189 -0
  141. package/dist/ts/implementation/structured-elements/grid/pdf-grid-column.ts +206 -0
  142. package/dist/ts/implementation/structured-elements/grid/pdf-grid-row.ts +470 -0
  143. package/dist/ts/implementation/structured-elements/grid/pdf-grid.ts +853 -0
  144. package/dist/ts/implementation/structured-elements/grid/styles/pdf-borders.ts +240 -0
  145. package/dist/ts/implementation/structured-elements/grid/styles/style.ts +424 -0
  146. package/dist/ts/implementation/structured-elements/tables/light-tables/enum.ts +16 -0
  147. package/dist/ts/interfaces/i-pdf-cache.ts +23 -0
  148. package/dist/ts/interfaces/i-pdf-changable.ts +17 -0
  149. package/dist/ts/interfaces/i-pdf-clonable.ts +12 -0
  150. package/dist/ts/interfaces/i-pdf-primitives.ts +45 -0
  151. package/dist/ts/interfaces/i-pdf-true-type-font.ts +48 -0
  152. package/dist/ts/interfaces/i-pdf-wrapper.ts +13 -0
  153. package/dist/ts/interfaces/i-pdf-writer.ts +29 -0
  154. package/package.json +8 -7
@@ -0,0 +1,192 @@
1
+ /**
2
+ * PdfPageSettings.ts class for EJ2-PDF
3
+ */
4
+ import { SizeF, PointF } from './../drawing/pdf-drawing';
5
+ import { PdfPageSize } from './pdf-page-size';
6
+ import { PdfPageRotateAngle, PdfPageOrientation } from './enum';
7
+ import { PdfMargins } from './../graphics/pdf-margins';
8
+ /**
9
+ * The class provides various `setting` related with PDF pages.
10
+ */
11
+ export class PdfPageSettings {
12
+ //Fields
13
+ /**
14
+ * The page `margins`.
15
+ * @private
16
+ */
17
+ private pageMargins : PdfMargins = new PdfMargins();
18
+ /**
19
+ * The page `size`.
20
+ * @default a4
21
+ * @private
22
+ */
23
+ private pageSize : SizeF = PdfPageSize.a4;
24
+ /**
25
+ * The page `rotation angle`.
26
+ * @default PdfPageRotateAngle.RotateAngle0
27
+ * @private
28
+ */
29
+ private rotateAngle : PdfPageRotateAngle = PdfPageRotateAngle.RotateAngle0;
30
+ /**
31
+ * The page `orientation`.
32
+ * @default PdfPageOrientation.Portrait
33
+ * @private
34
+ */
35
+ private pageOrientation : PdfPageOrientation = PdfPageOrientation.Portrait;
36
+ /**
37
+ * The page `origin`.
38
+ * @default 0,0
39
+ * @private
40
+ */
41
+ private pageOrigin : PointF = new PointF(0, 0);
42
+ /**
43
+ * Checks the Whether the `rotation` is applied or not.
44
+ * @default false
45
+ * @private
46
+ */
47
+ public isRotation : boolean = false;
48
+ //constructor
49
+ /**
50
+ * Initializes a new instance of the `PdfPageSettings` class.
51
+ * @private
52
+ */
53
+ constructor()
54
+ /**
55
+ * Initializes a new instance of the `PdfPageSettings` class.
56
+ * @private
57
+ */
58
+ constructor(margins : number)
59
+ constructor(margins? : number) {
60
+ if (typeof margins === 'number') {
61
+ this.pageMargins.setMargins(margins);
62
+ }
63
+ }
64
+ //Properties
65
+ /**
66
+ * Gets or sets the `size` of the page.
67
+ * @private
68
+ */
69
+ public get size() : SizeF {
70
+ return this.pageSize;
71
+ }
72
+ public set size(value : SizeF) {
73
+ this.setSize(value);
74
+ }
75
+ /**
76
+ * Gets or sets the page `orientation`.
77
+ * @private
78
+ */
79
+ public get orientation() : PdfPageOrientation {
80
+ return this.pageOrientation;
81
+ }
82
+ public set orientation(orientation : PdfPageOrientation) {
83
+ if (this.pageOrientation !== orientation) {
84
+ this.pageOrientation = orientation;
85
+ this.updateSize(orientation);
86
+ }
87
+ }
88
+ /**
89
+ * Gets or sets the `margins` of the page.
90
+ * @private
91
+ */
92
+ public get margins() : PdfMargins {
93
+ return this.pageMargins;
94
+ }
95
+ public set margins(value : PdfMargins) {
96
+ this.pageMargins = value;
97
+ }
98
+ /**
99
+ * Gets or sets the `width` of the page.
100
+ * @private
101
+ */
102
+ public get width() : number {
103
+ return this.pageSize.width;
104
+ }
105
+ public set width(value : number) {
106
+ this.pageSize.width = value;
107
+ }
108
+ /**
109
+ * Gets or sets the `height` of the page.
110
+ * @private
111
+ */
112
+ public get height() : number {
113
+ return this.pageSize.height;
114
+ }
115
+ public set height(value : number) {
116
+ this.pageSize.height = value;
117
+ }
118
+ /**
119
+ * Gets or sets the `origin` of the page.
120
+ * @private
121
+ */
122
+ public get origin() : PointF {
123
+ return this.pageOrigin;
124
+ }
125
+ public set origin(value : PointF) {
126
+ this.pageOrigin = value;
127
+ }
128
+ /**
129
+ * Gets or sets the number of degrees by which the page should be `rotated` clockwise when displayed or printed.
130
+ * @private
131
+ */
132
+ public get rotate() : PdfPageRotateAngle {
133
+ return this.rotateAngle;
134
+ }
135
+ public set rotate(value : PdfPageRotateAngle) {
136
+ this.rotateAngle = value;
137
+ this.isRotation = true;
138
+ }
139
+ //Methods
140
+ /**
141
+ * `Update page size` depending on orientation.
142
+ * @private
143
+ */
144
+ private updateSize(orientation : PdfPageOrientation) : void {
145
+ let min : number = Math.min(this.pageSize.width, this.pageSize.height);
146
+ let max : number = Math.max(this.pageSize.width, this.pageSize.height);
147
+ switch (orientation) {
148
+ case PdfPageOrientation.Portrait :
149
+ this.pageSize = new SizeF(min, max);
150
+ break;
151
+ case PdfPageOrientation.Landscape :
152
+ this.pageSize = new SizeF(max, min);
153
+ break;
154
+ }
155
+ }
156
+ /**
157
+ * Creates a `clone` of the object.
158
+ * @private
159
+ */
160
+ public clone() : PdfPageSettings {
161
+ let settings : PdfPageSettings = this;
162
+ settings.pageMargins = this.pageMargins.clone();
163
+ // if (GetTransition() != null)
164
+ // {
165
+ // settings.Transition = (PdfPageTransition)Transition.clone();
166
+ // }
167
+ return settings;
168
+ }
169
+ /**
170
+ * Returns `size`, shrinked by the margins.
171
+ * @private
172
+ */
173
+ public getActualSize() : SizeF {
174
+ let width : number = this.width - (this.margins.left + this.margins.right);
175
+ let height : number = this.height - (this.margins.top + this.margins.bottom);
176
+ let size : SizeF = new SizeF(width, height);
177
+ return size;
178
+ }
179
+ /**
180
+ * Sets `size` to the page aaccording to the orientation.
181
+ * @private
182
+ */
183
+ private setSize(size : SizeF) : void {
184
+ let min : number = Math.min(size.width, size.height);
185
+ let max : number = Math.max(size.width, size.height);
186
+ if (this.orientation === PdfPageOrientation.Portrait) {
187
+ this.pageSize = new SizeF(min, max);
188
+ } else {
189
+ this.pageSize = new SizeF(max, min);
190
+ }
191
+ }
192
+ }
@@ -0,0 +1,162 @@
1
+ /**
2
+ * PdfPageSize.ts class for EJ2-PDF
3
+ */
4
+ import { SizeF } from './../drawing/pdf-drawing';
5
+ /**
6
+ * Represents information about various predefined `page sizes`.
7
+ */
8
+ export class PdfPageSize {
9
+ /**
10
+ * Specifies the size of `letter`.
11
+ * @private
12
+ */
13
+ public static readonly letter : SizeF = new SizeF(612, 792);
14
+ /**
15
+ * Specifies the size of `note`.
16
+ * @private
17
+ */
18
+ public static readonly note : SizeF = new SizeF(540, 720);
19
+ /**
20
+ * Specifies the size of `legal`.
21
+ * @private
22
+ */
23
+ public static readonly legal : SizeF = new SizeF(612, 1008);
24
+ /**
25
+ * Specifies the size of `a0`.
26
+ * @private
27
+ */
28
+ public static readonly a0 : SizeF = new SizeF(2380, 3368);
29
+ /**
30
+ * Specifies the size of `a1`.
31
+ * @private
32
+ */
33
+ public static readonly a1 : SizeF = new SizeF(1684, 2380);
34
+ /**
35
+ * Specifies the size of `a2`.
36
+ * @private
37
+ */
38
+ public static readonly a2 : SizeF = new SizeF(1190, 1684);
39
+ /**
40
+ * Specifies the size of `a3`.
41
+ * @private
42
+ */
43
+ public static readonly a3 : SizeF = new SizeF(842, 1190);
44
+ /**
45
+ * Specifies the size of `a4`.
46
+ * @private
47
+ */
48
+ public static readonly a4 : SizeF = new SizeF(595, 842);
49
+ /**
50
+ * Specifies the size of `a5`.
51
+ * @private
52
+ */
53
+ public static readonly a5 : SizeF = new SizeF(421, 595);
54
+ /**
55
+ * Specifies the size of `a6`.
56
+ * @private
57
+ */
58
+ public static readonly a6 : SizeF = new SizeF(297, 421);
59
+ /**
60
+ * Specifies the size of `a7`.
61
+ * @private
62
+ */
63
+ public static readonly a7 : SizeF = new SizeF(210, 297);
64
+ /**
65
+ * Specifies the size of `a8`.
66
+ * @private
67
+ */
68
+ public static readonly a8 : SizeF = new SizeF(148, 210);
69
+ /**
70
+ * Specifies the size of `a9`.
71
+ * @private
72
+ */
73
+ public static readonly a9 : SizeF = new SizeF(105, 148);
74
+ /**
75
+ * Specifies the size of `a10`.
76
+ * @private
77
+ */
78
+ public static readonly a10 : SizeF = new SizeF(74, 105);
79
+ /**
80
+ * Specifies the size of `b0`.
81
+ * @private
82
+ */
83
+ public static readonly b0 : SizeF = new SizeF(2836, 4008);
84
+ /**
85
+ * Specifies the size of `b1`.
86
+ * @private
87
+ */
88
+ public static readonly b1 : SizeF = new SizeF(2004, 2836);
89
+ /**
90
+ * Specifies the size of `b2`.
91
+ * @private
92
+ */
93
+ public static readonly b2 : SizeF = new SizeF(1418, 2004);
94
+ /**
95
+ * Specifies the size of `b3`.
96
+ * @private
97
+ */
98
+ public static readonly b3 : SizeF = new SizeF(1002, 1418);
99
+ /**
100
+ * Specifies the size of `b4`.
101
+ * @private
102
+ */
103
+ public static readonly b4 : SizeF = new SizeF(709, 1002);
104
+ /**
105
+ * Specifies the size of `b5`.
106
+ * @private
107
+ */
108
+ public static readonly b5 : SizeF = new SizeF(501, 709);
109
+ /**
110
+ * Specifies the size of `archE`.
111
+ * @private
112
+ */
113
+ public static readonly archE : SizeF = new SizeF(2592, 3456);
114
+ /**
115
+ * Specifies the size of `archD`.
116
+ * @private
117
+ */
118
+ public static readonly archD : SizeF = new SizeF(1728, 2592);
119
+ /**
120
+ * Specifies the size of `archC`.
121
+ * @private
122
+ */
123
+ public static readonly archC : SizeF = new SizeF(1296, 1728);
124
+ /**
125
+ * Specifies the size of `archB`.
126
+ * @private
127
+ */
128
+ public static readonly archB : SizeF = new SizeF(864, 1296);
129
+ /**
130
+ * Specifies the size of `archA`.
131
+ * @private
132
+ */
133
+ public static readonly archA : SizeF = new SizeF(648, 864);
134
+ /**
135
+ * Specifies the size of `flsa`.
136
+ * @private
137
+ */
138
+ public static readonly flsa : SizeF = new SizeF(612, 936);
139
+ /**
140
+ * Specifies the size of `halfLetter`.
141
+ * @private
142
+ */
143
+ public static readonly halfLetter : SizeF = new SizeF(396, 612);
144
+ /**
145
+ * Specifies the size of `letter11x17`.
146
+ * @private
147
+ */
148
+ public static readonly letter11x17 : SizeF = new SizeF(792, 1224);
149
+ /**
150
+ * Specifies the size of `ledger`.
151
+ * @private
152
+ */
153
+ public static readonly ledger : SizeF = new SizeF(1224, 792);
154
+ //constructor
155
+ /**
156
+ * Initialize an instance for `PdfPageSize` class.
157
+ * @private
158
+ */
159
+ public constructor() {
160
+ //
161
+ }
162
+ }