objects.js 499 B

12345678910111213141516171819
  1. "use strict";
  2. // eslint-disable-next-line no-unused-vars
  3. var DesignerObjects = {
  4. PdfPage: function PdfPage(dbName, pageDescr, tblCords) {
  5. // eslint-disable-next-line no-unused-vars
  6. var pgNr;
  7. this.dbName = dbName;
  8. this.pageDescr = pageDescr;
  9. this.tblCords = tblCords;
  10. },
  11. TableCoordinate: function TableCoordinate(dbName, tableName, pdfPgNr, x, y) {
  12. this.dbName = dbName;
  13. this.tableName = tableName;
  14. this.pdfPgNr = pdfPgNr;
  15. this.x = x;
  16. this.y = y;
  17. }
  18. };