Lines Matching refs:pageFormat

446 	this.graph.pageFormat = mxGraph.prototype.pageFormat;
517 this.graph.pageFormat = new mxRectangle(0, 0, pw, ph);
624 node.setAttribute('pageWidth', this.graph.pageFormat.width);
625 node.setAttribute('pageHeight', this.graph.pageFormat.height);
1296 var pf = graph.pageFormat || mxConstants.PAGE_FORMAT_A4_PORTRAIT;
1485 var accessor = PageSetupDialog.addPageFormatPanel(td, 'pagesetupdialog', graph.pageFormat);
1674 if (graph.pageFormat.width != change.previousFormat.width ||
1675 graph.pageFormat.height != change.previousFormat.height ||
1699 PageSetupDialog.addPageFormatPanel = function(div, namePostfix, pageFormat, pageFormatListener) argument
1801 if (pageFormat.width == 826)
1803 pageFormat = mxRectangle.fromRectangle(pageFormat);
1804 pageFormat.width = 827;
1806 else if (pageFormat.height == 826)
1808 pageFormat = mxRectangle.fromRectangle(pageFormat);
1809 pageFormat.height = 827;
1814 if (pageFormat.width == 584)
1816 pageFormat = mxRectangle.fromRectangle(pageFormat);
1817 pageFormat.width = 583;
1819 else if (pageFormat.height == 584)
1821 pageFormat = mxRectangle.fromRectangle(pageFormat);
1822 pageFormat.height = 583;
1826 if (pageFormat.width == f.format.width && pageFormat.height == f.format.height)
1837 else if (pageFormat.width == f.format.height && pageFormat.height == f.format.width)
1854 widthInput.value = pageFormat.width / 100;
1855 heightInput.value = pageFormat.height / 100;
1877 var currentPageFormat = pageFormat;
1900 widthInput.value = pageFormat.width / 100;
1907 heightInput.value = pageFormat.height / 100;
1964 pageFormat = value;
2597 var fmt = this.pageFormat;
2729 var fmt = this.graph.pageFormat;