@syncfusion/ej2-pdf-export 23.2.6 → 24.1.41

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 (161) hide show
  1. package/CHANGELOG.md +0 -26
  2. package/dist/ej2-pdf-export.min.js +2 -2
  3. package/dist/ej2-pdf-export.umd.min.js +1 -1
  4. package/dist/ej2-pdf-export.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-pdf-export.es2015.js.map +1 -1
  6. package/dist/es6/ej2-pdf-export.es5.js.map +1 -1
  7. package/dist/global/ej2-pdf-export.min.js +1 -1
  8. package/dist/global/ej2-pdf-export.min.js.map +1 -1
  9. package/dist/global/index.d.ts +1 -1
  10. package/dist/ts/implementation/actions/action.ts +76 -0
  11. package/dist/ts/implementation/actions/uri-action.ts +52 -0
  12. package/dist/ts/implementation/annotations/action-link-annotation.ts +43 -0
  13. package/dist/ts/implementation/annotations/annotation-collection.ts +159 -0
  14. package/dist/ts/implementation/annotations/annotation.ts +241 -0
  15. package/dist/ts/implementation/annotations/document-link-annotation.ts +118 -0
  16. package/dist/ts/implementation/annotations/link-annotation.ts +32 -0
  17. package/dist/ts/implementation/annotations/pdf-text-web-link.ts +265 -0
  18. package/dist/ts/implementation/annotations/uri-annotation.ts +86 -0
  19. package/dist/ts/implementation/collections/dictionary.ts +150 -0
  20. package/dist/ts/implementation/collections/object-object-pair/dictionary.ts +125 -0
  21. package/dist/ts/implementation/collections/utils.ts +38 -0
  22. package/dist/ts/implementation/document/automatic-fields/automatic-field-info-collection.ts +39 -0
  23. package/dist/ts/implementation/document/automatic-fields/automatic-field-info.ts +108 -0
  24. package/dist/ts/implementation/document/automatic-fields/automatic-field.ts +127 -0
  25. package/dist/ts/implementation/document/automatic-fields/composite-field.ts +76 -0
  26. package/dist/ts/implementation/document/automatic-fields/multiple-value-field.ts +37 -0
  27. package/dist/ts/implementation/document/automatic-fields/page-count-field.ts +75 -0
  28. package/dist/ts/implementation/document/automatic-fields/pdf-numbers-convertor.ts +157 -0
  29. package/dist/ts/implementation/document/automatic-fields/pdf-page-number-field.ts +82 -0
  30. package/dist/ts/implementation/document/automatic-fields/pdf-template-value-pair.ts +60 -0
  31. package/dist/ts/implementation/document/automatic-fields/single-value-field.ts +48 -0
  32. package/dist/ts/implementation/document/pdf-catalog.ts +65 -0
  33. package/dist/ts/implementation/document/pdf-document-base.ts +180 -0
  34. package/dist/ts/implementation/document/pdf-document-template.ts +310 -0
  35. package/dist/ts/implementation/document/pdf-document.ts +342 -0
  36. package/dist/ts/implementation/document/pdf-viewer-preferences.ts +578 -0
  37. package/dist/ts/implementation/drawing/pdf-drawing.ts +218 -0
  38. package/dist/ts/implementation/general/enum.ts +21 -0
  39. package/dist/ts/implementation/general/functions/pdf-function.ts +66 -0
  40. package/dist/ts/implementation/general/functions/pdf-sampled-function.ts +63 -0
  41. package/dist/ts/implementation/general/pdf-cache-collection.ts +97 -0
  42. package/dist/ts/implementation/general/pdf-collection.ts +41 -0
  43. package/dist/ts/implementation/general/pdf-destination.ts +170 -0
  44. package/dist/ts/implementation/graphics/brushes/enum.ts +237 -0
  45. package/dist/ts/implementation/graphics/brushes/pdf-blend.ts +294 -0
  46. package/dist/ts/implementation/graphics/brushes/pdf-brush.ts +68 -0
  47. package/dist/ts/implementation/graphics/brushes/pdf-brushes.ts +2438 -0
  48. package/dist/ts/implementation/graphics/brushes/pdf-color-blend.ts +295 -0
  49. package/dist/ts/implementation/graphics/brushes/pdf-gradient-brush.ts +311 -0
  50. package/dist/ts/implementation/graphics/brushes/pdf-linear-gradient-brush.ts +406 -0
  51. package/dist/ts/implementation/graphics/brushes/pdf-radial-gradient-brush.ts +290 -0
  52. package/dist/ts/implementation/graphics/brushes/pdf-solid-brush.ts +107 -0
  53. package/dist/ts/implementation/graphics/brushes/pdf-tiling-brush.ts +304 -0
  54. package/dist/ts/implementation/graphics/constants.ts +31 -0
  55. package/dist/ts/implementation/graphics/enum.ts +413 -0
  56. package/dist/ts/implementation/graphics/figures/arc.ts +133 -0
  57. package/dist/ts/implementation/graphics/figures/base/draw-element.ts +59 -0
  58. package/dist/ts/implementation/graphics/figures/base/element-layouter.ts +260 -0
  59. package/dist/ts/implementation/graphics/figures/base/fill-element.ts +72 -0
  60. package/dist/ts/implementation/graphics/figures/base/graphics-element.ts +34 -0
  61. package/dist/ts/implementation/graphics/figures/base/pdf-shape-element.ts +69 -0
  62. package/dist/ts/implementation/graphics/figures/base/shape-layouter.ts +276 -0
  63. package/dist/ts/implementation/graphics/figures/base/text-layouter.ts +205 -0
  64. package/dist/ts/implementation/graphics/figures/ellipse-part.ts +76 -0
  65. package/dist/ts/implementation/graphics/figures/enum.ts +80 -0
  66. package/dist/ts/implementation/graphics/figures/layout-element.ts +132 -0
  67. package/dist/ts/implementation/graphics/figures/path.ts +646 -0
  68. package/dist/ts/implementation/graphics/figures/pdf-template.ts +205 -0
  69. package/dist/ts/implementation/graphics/figures/rectangle-area.ts +108 -0
  70. package/dist/ts/implementation/graphics/figures/text-element.ts +445 -0
  71. package/dist/ts/implementation/graphics/fonts/enum.ts +385 -0
  72. package/dist/ts/implementation/graphics/fonts/pdf-font-metrics.ts +248 -0
  73. package/dist/ts/implementation/graphics/fonts/pdf-font.ts +316 -0
  74. package/dist/ts/implementation/graphics/fonts/pdf-standard-font-metrics-factory.ts +606 -0
  75. package/dist/ts/implementation/graphics/fonts/pdf-standard-font.ts +243 -0
  76. package/dist/ts/implementation/graphics/fonts/pdf-string-format.ts +474 -0
  77. package/dist/ts/implementation/graphics/fonts/pdf-true-type-font.ts +165 -0
  78. package/dist/ts/implementation/graphics/fonts/rtl/rtl-bidirectional.ts +958 -0
  79. package/dist/ts/implementation/graphics/fonts/rtl/rtl-text-shape.ts +374 -0
  80. package/dist/ts/implementation/graphics/fonts/rtl-renderer.ts +255 -0
  81. package/dist/ts/implementation/graphics/fonts/string-layouter.ts +617 -0
  82. package/dist/ts/implementation/graphics/fonts/string-tokenizer.ts +275 -0
  83. package/dist/ts/implementation/graphics/fonts/ttf-OS2-Table.ts +206 -0
  84. package/dist/ts/implementation/graphics/fonts/ttf-apple-cmap-sub-table.ts +18 -0
  85. package/dist/ts/implementation/graphics/fonts/ttf-cmap-sub-table.ts +18 -0
  86. package/dist/ts/implementation/graphics/fonts/ttf-cmap-table.ts +14 -0
  87. package/dist/ts/implementation/graphics/fonts/ttf-glyph-header.ts +26 -0
  88. package/dist/ts/implementation/graphics/fonts/ttf-glyph-info.ts +35 -0
  89. package/dist/ts/implementation/graphics/fonts/ttf-head-table.ts +94 -0
  90. package/dist/ts/implementation/graphics/fonts/ttf-horizontal-header-table.ts +56 -0
  91. package/dist/ts/implementation/graphics/fonts/ttf-loca-table.ts +10 -0
  92. package/dist/ts/implementation/graphics/fonts/ttf-long-hor-metric.ts +14 -0
  93. package/dist/ts/implementation/graphics/fonts/ttf-metrics.ts +106 -0
  94. package/dist/ts/implementation/graphics/fonts/ttf-microsoft-cmap-sub-table.ts +58 -0
  95. package/dist/ts/implementation/graphics/fonts/ttf-name-record.ts +33 -0
  96. package/dist/ts/implementation/graphics/fonts/ttf-name-table.ts +22 -0
  97. package/dist/ts/implementation/graphics/fonts/ttf-post-table.ts +42 -0
  98. package/dist/ts/implementation/graphics/fonts/ttf-reader.ts +1254 -0
  99. package/dist/ts/implementation/graphics/fonts/ttf-table-info.ts +26 -0
  100. package/dist/ts/implementation/graphics/fonts/ttf-trimmed-cmap-sub-table.ts +26 -0
  101. package/dist/ts/implementation/graphics/fonts/unicode-true-type-font.ts +577 -0
  102. package/dist/ts/implementation/graphics/images/byte-array.ts +137 -0
  103. package/dist/ts/implementation/graphics/images/image-decoder.ts +439 -0
  104. package/dist/ts/implementation/graphics/images/pdf-bitmap.ts +110 -0
  105. package/dist/ts/implementation/graphics/images/pdf-image.ts +132 -0
  106. package/dist/ts/implementation/graphics/pdf-color.ts +478 -0
  107. package/dist/ts/implementation/graphics/pdf-graphics.ts +2429 -0
  108. package/dist/ts/implementation/graphics/pdf-margins.ts +124 -0
  109. package/dist/ts/implementation/graphics/pdf-pen.ts +370 -0
  110. package/dist/ts/implementation/graphics/pdf-resources.ts +300 -0
  111. package/dist/ts/implementation/graphics/pdf-transformation-matrix.ts +246 -0
  112. package/dist/ts/implementation/graphics/pdf-transparency.ts +93 -0
  113. package/dist/ts/implementation/graphics/unit-convertor.ts +96 -0
  114. package/dist/ts/implementation/input-output/big-endian-writer.ts +121 -0
  115. package/dist/ts/implementation/input-output/cross-table.ts +21 -0
  116. package/dist/ts/implementation/input-output/enum.ts +16 -0
  117. package/dist/ts/implementation/input-output/pdf-cross-table.ts +524 -0
  118. package/dist/ts/implementation/input-output/pdf-dictionary-properties.ts +571 -0
  119. package/dist/ts/implementation/input-output/pdf-main-object-collection.ts +194 -0
  120. package/dist/ts/implementation/input-output/pdf-operators.ts +363 -0
  121. package/dist/ts/implementation/input-output/pdf-stream-writer.ts +681 -0
  122. package/dist/ts/implementation/input-output/pdf-writer.ts +88 -0
  123. package/dist/ts/implementation/pages/enum.ts +201 -0
  124. package/dist/ts/implementation/pages/page-added-event-arguments.ts +39 -0
  125. package/dist/ts/implementation/pages/pdf-document-page-collection.ts +180 -0
  126. package/dist/ts/implementation/pages/pdf-page-base.ts +181 -0
  127. package/dist/ts/implementation/pages/pdf-page-layer-collection.ts +348 -0
  128. package/dist/ts/implementation/pages/pdf-page-layer.ts +271 -0
  129. package/dist/ts/implementation/pages/pdf-page-settings.ts +192 -0
  130. package/dist/ts/implementation/pages/pdf-page-size.ts +162 -0
  131. package/dist/ts/implementation/pages/pdf-page-template-element.ts +663 -0
  132. package/dist/ts/implementation/pages/pdf-page.ts +235 -0
  133. package/dist/ts/implementation/pages/pdf-section-collection.ts +187 -0
  134. package/dist/ts/implementation/pages/pdf-section-page-collection.ts +61 -0
  135. package/dist/ts/implementation/pages/pdf-section-templates.ts +96 -0
  136. package/dist/ts/implementation/pages/pdf-section.ts +644 -0
  137. package/dist/ts/implementation/primitives/pdf-array.ts +386 -0
  138. package/dist/ts/implementation/primitives/pdf-boolean.ts +119 -0
  139. package/dist/ts/implementation/primitives/pdf-dictionary.ts +513 -0
  140. package/dist/ts/implementation/primitives/pdf-name.ts +218 -0
  141. package/dist/ts/implementation/primitives/pdf-number.ts +165 -0
  142. package/dist/ts/implementation/primitives/pdf-reference.ts +430 -0
  143. package/dist/ts/implementation/primitives/pdf-stream.ts +306 -0
  144. package/dist/ts/implementation/primitives/pdf-string.ts +397 -0
  145. package/dist/ts/implementation/structured-elements/grid/layout/grid-layouter.ts +2027 -0
  146. package/dist/ts/implementation/structured-elements/grid/pdf-grid-cell.ts +1193 -0
  147. package/dist/ts/implementation/structured-elements/grid/pdf-grid-column.ts +206 -0
  148. package/dist/ts/implementation/structured-elements/grid/pdf-grid-row.ts +470 -0
  149. package/dist/ts/implementation/structured-elements/grid/pdf-grid.ts +853 -0
  150. package/dist/ts/implementation/structured-elements/grid/styles/pdf-borders.ts +240 -0
  151. package/dist/ts/implementation/structured-elements/grid/styles/style.ts +424 -0
  152. package/dist/ts/implementation/structured-elements/tables/light-tables/enum.ts +16 -0
  153. package/dist/ts/interfaces/i-pdf-cache.ts +23 -0
  154. package/dist/ts/interfaces/i-pdf-changable.ts +17 -0
  155. package/dist/ts/interfaces/i-pdf-clonable.ts +12 -0
  156. package/dist/ts/interfaces/i-pdf-primitives.ts +45 -0
  157. package/dist/ts/interfaces/i-pdf-true-type-font.ts +48 -0
  158. package/dist/ts/interfaces/i-pdf-wrapper.ts +13 -0
  159. package/dist/ts/interfaces/i-pdf-writer.ts +29 -0
  160. package/package.json +7 -7
  161. package/src/implementation/document/pdf-document-base.js +1 -2
@@ -0,0 +1,205 @@
1
+ /**
2
+ * PdfTemplate.ts class for EJ2-PDF
3
+ */
4
+ import { PdfStream } from './../../primitives/pdf-stream';
5
+ import { DictionaryProperties } from './../../input-output/pdf-dictionary-properties';
6
+ import { PdfArray } from './../../primitives/pdf-array';
7
+ import { PdfGraphics } from './../pdf-graphics';
8
+ import { PdfStreamWriter } from './../../input-output/pdf-stream-writer';
9
+ import { PdfResources } from './../pdf-resources';
10
+ import { PdfName } from './../../primitives/pdf-name';
11
+ import { PointF, SizeF, RectangleF } from './../../drawing/pdf-drawing';
12
+ import { IPdfWrapper } from './../../../interfaces/i-pdf-wrapper';
13
+ import { IPdfPrimitive } from './../../../interfaces/i-pdf-primitives';
14
+ import { GetResourceEventHandler } from './../pdf-graphics';
15
+ /**
16
+ * Represents `Pdf Template` object.
17
+ * @private
18
+ */
19
+ export class PdfTemplate implements IPdfWrapper {
20
+ //Fields
21
+ /**
22
+ * Stores the value of current `graphics`.
23
+ * @private
24
+ */
25
+ private pdfGraphics : PdfGraphics;
26
+ /**
27
+ * Stores the instance of `PdfResources` class.
28
+ * @private
29
+ */
30
+ private resources : PdfResources;
31
+ /**
32
+ * Stores the `size` of the 'PdfTemplate'.
33
+ * @private
34
+ */
35
+ private templateSize : SizeF;
36
+ /**
37
+ * Initialize an instance for `DictionaryProperties` class.
38
+ * @private
39
+ * @hidden
40
+ */
41
+ private dictionaryProperties : DictionaryProperties = new DictionaryProperties();
42
+ /**
43
+ * Stores the `content` of the 'PdfTemplate'.
44
+ * @private
45
+ */
46
+ public content : PdfStream;
47
+ /**
48
+ * Checks whether the transformation 'is performed'.
49
+ * @default true
50
+ * @private
51
+ */
52
+ public writeTransformation : boolean = true;
53
+ //Properties
54
+ /**
55
+ * Gets the size of the 'PdfTemplate'.
56
+ */
57
+ public get size() : SizeF {
58
+ return this.templateSize;
59
+ }
60
+ /**
61
+ * Gets the width of the 'PdfTemplate'.
62
+ */
63
+ public get width() : number {
64
+ return this.size.width;
65
+ }
66
+ /**
67
+ * Gets the height of the 'PdfTemplate'.
68
+ */
69
+ public get height() : number {
70
+ return this.size.height;
71
+ }
72
+ /**
73
+ * Gets the `graphics` of the 'PdfTemplate'.
74
+ */
75
+ public get graphics() : PdfGraphics {
76
+ if (this.pdfGraphics == null || typeof this.pdfGraphics === 'undefined') {
77
+ let gr : GetResourceEventHandler = new GetResourceEventHandler(this);
78
+ let g : PdfGraphics = new PdfGraphics(this.size, gr, this.content);
79
+ this.pdfGraphics = g;
80
+ // if(this.writeTransformation) {
81
+ // Transform co-ordinates to Top/Left.
82
+ this.pdfGraphics.initializeCoordinates();
83
+ // }
84
+ }
85
+ return this.pdfGraphics;
86
+ }
87
+ /**
88
+ * Gets the resources and modifies the template dictionary.
89
+ * @private
90
+ */
91
+ public getResources() : PdfResources {
92
+ if (this.resources == null) {
93
+ this.resources = new PdfResources();
94
+ this.content.items.setValue(this.dictionaryProperties.resources, this.resources);
95
+ }
96
+ return this.resources;
97
+ }
98
+ /**
99
+ * Create the new instance for `PdfTemplate` class.
100
+ * @private
101
+ */
102
+ public constructor()
103
+ /**
104
+ * Create the new instance for `PdfTemplate` class with Size.
105
+ * @private
106
+ */
107
+ public constructor(arg1 : SizeF)
108
+ /**
109
+ * Create the new instance for `PdfTemplate` class with width and height.
110
+ * @private
111
+ */
112
+ public constructor(arg1 : number, arg2 : number)
113
+ public constructor(arg1 ?: number | SizeF, arg2 ?: number) {
114
+ if (typeof arg1 === 'undefined') {
115
+ //
116
+ } else if (arg1 instanceof SizeF && typeof arg2 === 'undefined') {
117
+ this.content = new PdfStream();
118
+ let tempSize : SizeF = new SizeF(arg1.width, arg1.height);
119
+ this.setSize(tempSize);
120
+ this.initialize();
121
+ } else {
122
+ this.content = new PdfStream();
123
+ this.setSize(new SizeF(arg1 as number, arg2 as number));
124
+ this.initialize();
125
+ }
126
+ }
127
+ // Public methods
128
+ /**
129
+ * `Initialize` the type and subtype of the template.
130
+ * @private
131
+ */
132
+ private initialize() : void {
133
+ this.addType();
134
+ this.addSubType();
135
+ }
136
+ /**
137
+ * `Adds type key`.
138
+ * @private
139
+ */
140
+ private addType() : void {
141
+ let value : PdfName = new PdfName(this.dictionaryProperties.xObject);
142
+ this.content.items.setValue(this.dictionaryProperties.type, value);
143
+ }
144
+ /**
145
+ * `Adds SubType key`.
146
+ * @private
147
+ */
148
+ private addSubType() : void {
149
+ let value : PdfName = new PdfName(this.dictionaryProperties.form);
150
+ this.content.items.setValue(this.dictionaryProperties.subtype, value);
151
+ }
152
+ /**
153
+ * `Reset` the size of the 'PdfTemplate'.
154
+ */
155
+ public reset() : void
156
+ public reset(size : SizeF) : void
157
+ public reset(size ?: SizeF) : void {
158
+ if (typeof size === 'undefined') {
159
+ if (this.resources != null) {
160
+ this.resources = null;
161
+ this.content.remove(this.dictionaryProperties.resources);
162
+ }
163
+ if (this.graphics != null) {
164
+ this.graphics.reset(this.size);
165
+ }
166
+ } else {
167
+ this.setSize(size);
168
+ this.reset();
169
+ }
170
+ }
171
+ /**
172
+ * `Set the size` of the 'PdfTemplate'.
173
+ * @private
174
+ */
175
+ private setSize(size : SizeF) : void {
176
+ let rect : RectangleF = new RectangleF(new PointF(0, 0), size);
177
+ let val : PdfArray = PdfArray.fromRectangle(rect);
178
+ this.content.items.setValue(this.dictionaryProperties.bBox, val);
179
+ this.templateSize = size;
180
+ }
181
+ // /**
182
+ // * Returns the value of current graphics.
183
+ // * @private
184
+ // */
185
+ // public GetGraphics(g : PdfGraphics) : PdfGraphics {
186
+ // if (this.graphics == null || typeof this.graphics === 'undefined') {
187
+ // this.graphics = g;
188
+ // this.graphics.Size = this.Size;
189
+ // this.graphics.StreamWriter = new PdfStreamWriter(this.content)
190
+ // this.graphics.Initialize();
191
+ // if(this.writeTransformation) {
192
+ // this.graphics.InitializeCoordinates();
193
+ // }
194
+ // }
195
+ // return this.graphics;
196
+ // }
197
+ // IPdfWrapper Members
198
+ /**
199
+ * Gets the `content stream` of 'PdfTemplate' class.
200
+ * @private
201
+ */
202
+ public get element() : IPdfPrimitive {
203
+ return this.content;
204
+ }
205
+ }
@@ -0,0 +1,108 @@
1
+ /**
2
+ * RectangleArea.ts class for EJ2-PDF
3
+ */
4
+ import { PdfBrush } from './../brushes/pdf-brush';
5
+ import { PdfPen } from './../pdf-pen';
6
+ import { RectangleF } from './../../drawing/pdf-drawing';
7
+ import { PdfFillElement} from './../figures/base/fill-element';
8
+ /**
9
+ * `PdfRectangleArea` class Implements graphics rectangle area, which is a sequence of primitive graphics elements.
10
+ * @private
11
+ */
12
+ export abstract class PdfRectangleArea extends PdfFillElement {
13
+ //Fields
14
+ /**
15
+ * public variable to store the rectangle.
16
+ * @public
17
+ */
18
+ public bounds : RectangleF = new RectangleF( 0, 0, 0, 0);
19
+ //Constructor
20
+ /**
21
+ * Initializes a new instance of the `PdfRectangleArea` class.
22
+ * @protected
23
+ */
24
+ protected constructor ()
25
+ /**
26
+ * Initializes a new instance of the `PdfRectangleArea` class.
27
+ * @protected
28
+ */
29
+ protected constructor (rectangle: RectangleF)
30
+ /**
31
+ * Initializes a new instance of the `PdfRectangleArea` class.
32
+ * @protected
33
+ */
34
+ protected constructor (pen: PdfPen, brush: PdfBrush, rectangle: RectangleF)
35
+ /**
36
+ * Initializes a new instance of the `PdfRectangleArea` class.
37
+ * @protected
38
+ */
39
+ protected constructor (x: number, y: number, width: number, height: number)
40
+ /**
41
+ * Initializes a new instance of the `PdfRectangleArea` class.
42
+ * @protected
43
+ */
44
+ protected constructor (pen: PdfPen, brush: PdfBrush, x: number, y: number, width: number, height: number)
45
+ /* tslint:disable-next-line:max-line-length */
46
+ protected constructor (arg1?: PdfPen|number|RectangleF , arg2?: PdfBrush|number, arg3?: number|RectangleF, arg4?: number, arg5?: number, arg6?: number) {
47
+ super();
48
+ if (typeof arg1 === 'undefined') {
49
+ //
50
+ } else if (arg1 instanceof PdfPen) {
51
+ super(arg1, arg2 as PdfBrush);
52
+ if (arg3 instanceof RectangleF) {
53
+ this.bounds = arg3;
54
+ } else {
55
+ this.bounds = new RectangleF(arg3, arg4, arg5, arg6);
56
+ }
57
+ } else if (arg1 instanceof RectangleF) {
58
+ this.bounds = arg1;
59
+ } else {
60
+ this.bounds = new RectangleF(arg1 as number, arg2 as number, arg3 as number, arg4 as number);
61
+ }
62
+ }
63
+ //Properties
64
+ /**
65
+ * Gets or sets the X co-ordinate of the upper-left corner of this the element.
66
+ * @public
67
+ */
68
+ public get x(): number {
69
+ return this.bounds.x;
70
+ }
71
+ public set x(value: number) {
72
+ this.bounds.x = value;
73
+ }
74
+ /**
75
+ * Gets or sets the Y co-ordinate of the upper-left corner of this the element.
76
+ * @public
77
+ */
78
+ public get y(): number {
79
+ return this.bounds.y;
80
+ }
81
+ public set y(value: number) {
82
+ this.bounds.y = value;
83
+ }
84
+ /**
85
+ * Gets or sets the width of this element.
86
+ * @public
87
+ */
88
+ public get width(): number {
89
+ return this.bounds.width;
90
+ }
91
+ public set width(value: number) {
92
+ this.bounds.width = value;
93
+ }
94
+ /**
95
+ * Gets or sets the height of this element.
96
+ * @public
97
+ */
98
+ public get height(): number {
99
+ return this.bounds.height;
100
+ }
101
+ public set height(value: number) {
102
+ this.bounds.height = value;
103
+ }
104
+ //Implementation
105
+ protected getBoundsInternal(): RectangleF {
106
+ return this.bounds;
107
+ }
108
+ }