com.lowagie.text.Rectangle.setLeft()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中com.lowagie.text.Rectangle.setLeft方法的一些代码示例,展示了Rectangle.setLeft的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Rectangle.setLeft方法的具体详情如下:
包路径:com.lowagie.text.Rectangle
类名称:Rectangle
方法名:setLeft

Rectangle.setLeft介绍

[英]Sets the lower left x-coordinate.
[中]设置左下角的x坐标。

代码示例

代码示例来源:origin: es.gob.afirma/afirma-crypto-pdf-itext

/**
 * Sets the bounding width of this template.
 *
 * @param width the bounding width
 */

public void setWidth(float width) {
  bBox.setLeft(0);
  bBox.setRight(width);
}

代码示例来源:origin: com.github.librepdf/openpdf

/**
 * Sets the bounding width of this template.
 *
 * @param width the bounding width
 */

public void setWidth(float width) {
  bBox.setLeft(0);
  bBox.setRight(width);
}

代码示例来源:origin: fr.opensagres.xdocreport.itext-gae/itext-gae

/**
 * Sets the bounding width of this template.
 *
 * @param width the bounding width
 */

public void setWidth(float width) {
  bBox.setLeft(0);
  bBox.setRight(width);
}

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-printing

/**
 * Move this rectangle to the specified bottom-left point.
 *
 * @param rect rectangle to move
 * @param x new x origin
 * @param y new y origin
 */
public void moveRectangleTo(Rectangle rect, float x, float y) {
  float width = rect.getWidth();
  float height = rect.getHeight();
  rect.setLeft(x);
  rect.setBottom(y);
  rect.setRight(rect.getLeft() + width);
  rect.setTop(rect.getBottom() + height);
}

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-printing

/**
 * Translate this rectangle over the specified following distances.
 *
 * @param rect rectangle to move
 * @param dx delta x
 * @param dy delta y
 */
public void translateRectangle(Rectangle rect, float dx, float dy) {
  float width = rect.getWidth();
  float height = rect.getHeight();
  rect.setLeft(rect.getLeft() + dx);
  rect.setBottom(rect.getBottom() + dy);
  rect.setRight(rect.getLeft() + dx + width);
  rect.setTop(rect.getBottom() + dy + height);
}

相关文章

微信公众号

最新文章

更多