Lines Matching refs:_width

67548 		node._width = node._minWidth = node._maxWidth = dimensions.width * factor;
67551 node._width = node._minWidth = node._maxWidth = node.width || dimensions.width;
67552 node._height = node.height || (dimensions.height * node._width / dimensions.width);
67554 if (isNumber(node.maxWidth) && node.maxWidth < node._width) {
67555 node._width = node._minWidth = node._maxWidth = node.maxWidth;
67556 node._height = node._width * dimensions.height / dimensions.width;
67561 …node._width = node._minWidth = node._maxWidth = node._height * dimensions.width / dimensions.heigh…
67564 if (isNumber(node.minWidth) && node.minWidth > node._width) {
67565 node._width = node._minWidth = node._maxWidth = node.minWidth;
67566 node._height = node._width * dimensions.height / dimensions.width;
67571 …node._width = node._minWidth = node._maxWidth = node._height * dimensions.width / dimensions.heigh…
67600 width: node._width,
71167 pdfKitDoc.image(image.image, image.x, image.y, { width: image._width, height: image._height });
71170 pdfKitDoc.link(image.x, image.y, image._width, image._height, image.link);
71174 …pdfKitDoc.annotate(image.x, image.y, image._width, image._height, { Subtype: 'Link', Dest: [image.…
71177 pdfKitDoc.goTo(image.x, image.y, image._width, image._height, image.linkToDestination);
71182 …var options = Object.assign({ width: svg._width, height: svg._height, assumePt: true }, svg.option…
72009 …node._width = node._height = node._minWidth = node._maxWidth = node._minHeight = node._maxHeight =…