Lines Matching refs:offset

412 					    			var offset = this.getActualStartSize(current.cell);
414 if (((offset.x > 0 || offset.width > 0) && mxUtils.intersects(box, new mxRectangle(
415 current.x + (offset.x - offset.width - 1) * s + ((offset.x == 0) ? current.width : 0),
416 current.y, 1, current.height))) || ((offset.y > 0 || offset.height > 0) &&
417 mxUtils.intersects(box, new mxRectangle(current.x, current.y + (offset.y -
418 offset.height - 1) * s + ((offset.y == 0) ? current.height : 0), current.width, 1))))
686 var offset = this.getActualStartSize(current.cell);
689 if ((offset.x > 0 || offset.width > 0) && mxUtils.intersects(box, new mxRectangle(
690 … current.x + (offset.x - offset.width - 1) * s + ((offset.x == 0) ? current.width * s : 0),
695 … else if ((offset.y > 0 || offset.height > 0) && mxUtils.intersects(box, new mxRectangle(
696 …current.x, current.y + (offset.y - offset.height - 1) * s + ((offset.y == 0) ? current.height : 0),
6323 var offset = this.graph.getActualStartSize(parent, true);
6338 var th = table.height - offset.y - offset.height;
6339 var tw = table.width - offset.x - offset.width;
6359 var y = offset.y;
6369 row.x = offset.x;
6393 table.height = y + offset.height;
6400 table.width = sw + offset.width + offset.x + Graph.minTableColumnWidth;
7649 geo.offset = null;
9047 label.geometry.offset = new mxPoint(0, 0);
9051 …label.geometry.offset = new mxPoint(Math.round((x - pt2.x) / scale), Math.round((y - pt2.y) / scal…
12672 var offset = mxUtils.getOffset(this.graph.container);
12673 origin.x -= offset.x;
12674 origin.y -= offset.y;