@syncfusion/ej2-pdf-export 19.4.50 → 19.4.52

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.
@@ -28699,10 +28699,7 @@ class PdfGridLayouter extends ElementLayouter {
28699
28699
  let index = 0;
28700
28700
  index = this.currentGraphics.page.section.indexOf(this.currentGraphics.page);
28701
28701
  this.listOfNavigatePages.push(index);
28702
- if (typeof param.bounds !== 'undefined' && param.bounds !== null && (!(param.bounds.x === 0 && param.bounds.y === 0 && param.bounds.width === 0 && param.bounds.height === 0))) {
28703
- this.currentBounds = new RectangleF(new PointF(param.bounds.x, param.bounds.y), new SizeF(param.bounds.width, param.bounds.height));
28704
- }
28705
- else if (format != null && format.break === PdfLayoutBreakType.FitColumnsToPage) {
28702
+ if (format != null && format.break === PdfLayoutBreakType.FitColumnsToPage) {
28706
28703
  this.currentBounds = new RectangleF(new PointF(param.bounds.x, param.bounds.y), new SizeF(this.Grid.columns.width, this.currentGraphics.clientSize.height));
28707
28704
  }
28708
28705
  else {