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

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

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

Rectangle.getVariableBorderWidth介绍

[英]Helper function returning the border width of a specific side.
[中]Helper函数返回特定边的边框宽度。

代码示例

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

/**
 * Gets the width of the left border.
 * 
 * @return a width
 */
public float getBorderWidthLeft() {
  return getVariableBorderWidth(borderWidthLeft, LEFT);
}

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

/**
 * Gets the width of the bottom border.
 * 
 * @return a width
 */
public float getBorderWidthBottom() {
  return getVariableBorderWidth(borderWidthBottom, BOTTOM);
}

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

/**
 * Gets the width of the right border.
 * 
 * @return a width
 */
public float getBorderWidthRight() {
  return getVariableBorderWidth(borderWidthRight, RIGHT);
}

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

/**
 * Gets the width of the top border.
 * 
 * @return a width
 */
public float getBorderWidthTop() {
  return getVariableBorderWidth(borderWidthTop, TOP);
}

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

/**
 * Gets the width of the left border.
 * 
 * @return a width
 */
public float getBorderWidthLeft() {
  return getVariableBorderWidth(borderWidthLeft, LEFT);
}

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

/**
 * Gets the width of the left border.
 * 
 * @return a width
 */
public float getBorderWidthLeft() {
 return getVariableBorderWidth(borderWidthLeft, LEFT);
}

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

/**
 * Gets the width of the right border.
 * 
 * @return a width
 */
public float getBorderWidthRight() {
 return getVariableBorderWidth(borderWidthRight, RIGHT);
}

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

/**
 * Gets the width of the bottom border.
 * 
 * @return a width
 */
public float getBorderWidthBottom() {
 return getVariableBorderWidth(borderWidthBottom, BOTTOM);
}

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

/**
 * Gets the width of the top border.
 * 
 * @return a width
 */
public float getBorderWidthTop() {
  return getVariableBorderWidth(borderWidthTop, TOP);
}

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

/**
 * Gets the width of the top border.
 * 
 * @return a width
 */
public float getBorderWidthTop() {
 return getVariableBorderWidth(borderWidthTop, TOP);
}

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

/**
 * Gets the width of the bottom border.
 * 
 * @return a width
 */
public float getBorderWidthBottom() {
  return getVariableBorderWidth(borderWidthBottom, BOTTOM);
}

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

/**
 * Gets the width of the right border.
 * 
 * @return a width
 */
public float getBorderWidthRight() {
  return getVariableBorderWidth(borderWidthRight, RIGHT);
}

相关文章

微信公众号

最新文章

更多