Tabnine Logo
PdfCell.getBottom
Code IndexAdd Tabnine to your IDE (free)

How to use
getBottom
method
in
com.lowagie.text.pdf.PdfCell

Best Java code snippets using com.lowagie.text.pdf.PdfCell.getBottom (Showing top 9 results out of 315)

origin: fr.opensagres.xdocreport.itext-gae/itext-gae

/**
 * Gets a Rectangle that is altered to fit on the page.
 *
 * @param    top        the top position
 * @param    bottom    the bottom position
 * @return    a <CODE>Rectangle</CODE>
 */
public Rectangle rectangle(float top, float bottom) {
  Rectangle tmp = new Rectangle(getLeft(), getBottom(), getRight(), getTop());
  tmp.cloneNonPositionParameters(this);
  if (getTop() > top) {
    tmp.setTop(top);
    tmp.setBorder(border - (border & TOP));
  }
  if (getBottom() < bottom) {
    tmp.setBottom(bottom);
    tmp.setBorder(border - (border & BOTTOM));
  }
  return tmp;
}
origin: es.gob.afirma/afirma-crypto-pdf-itext

/**
 * Gets a Rectangle that is altered to fit on the page.
 *
 * @param    top        the top position
 * @param    bottom    the bottom position
 * @return    a <CODE>Rectangle</CODE>
 */
public Rectangle rectangle(float top, float bottom) {
  Rectangle tmp = new Rectangle(getLeft(), getBottom(), getRight(), getTop());
  tmp.cloneNonPositionParameters(this);
  if (getTop() > top) {
    tmp.setTop(top);
    tmp.setBorder(border - (border & TOP));
  }
  if (getBottom() < bottom) {
    tmp.setBottom(bottom);
    tmp.setBorder(border - (border & BOTTOM));
  }
  return tmp;
}
origin: com.github.librepdf/openpdf

/**
 * Gets a Rectangle that is altered to fit on the page.
 *
 * @param    top        the top position
 * @param    bottom    the bottom position
 * @return    a <CODE>Rectangle</CODE>
 */
public Rectangle rectangle(float top, float bottom) {
  Rectangle tmp = new Rectangle(getLeft(), getBottom(), getRight(), getTop());
  tmp.cloneNonPositionParameters(this);
  if (getTop() > top) {
    tmp.setTop(top);
    tmp.setBorder(border - (border & TOP));
  }
  if (getBottom() < bottom) {
    tmp.setBottom(bottom);
    tmp.setBorder(border - (border & BOTTOM));
  }
  return tmp;
}
origin: es.gob.afirma/afirma-crypto-pdf-itext

cell = (PdfCell) iterator.next();
if (!cell.isHeader()) {
  if (cell.getBottom() < indentBottom()) return;
float indentBottom = Math.max(cell.getBottom(), indentBottom());
Rectangle tableRect = ctx.table.rectangle(ctx.pagetop, indentBottom());
indentBottom = Math.max(tableRect.getBottom(), indentBottom);
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

cell = (PdfCell) iterator.next();
if (!cell.isHeader()) {
  if (cell.getBottom() < indentBottom()) return;
float indentBottom = Math.max(cell.getBottom(), indentBottom());
Rectangle tableRect = ctx.table.rectangle(ctx.pagetop, indentBottom());
indentBottom = Math.max(tableRect.getBottom(), indentBottom);
origin: com.github.librepdf/openpdf

cell = (PdfCell) iterator.next();
if (!cell.isHeader()) {
  if (cell.getBottom() < indentBottom()) return;
float indentBottom = Math.max(cell.getBottom(), indentBottom());
Rectangle tableRect = ctx.table.rectangle(ctx.pagetop, indentBottom());
indentBottom = Math.max(tableRect.getBottom(), indentBottom);
origin: com.github.librepdf/openpdf

    cell.setBottom(indentTop() - oldTop + cell.getBottom(0));
    ctx.pagetop = cell.getBottom();
  cell = (PdfCell) cells.get(i);
  if (cell.getTop(-table.cellspacing()) > ctx.lostTableBottom) {
    float newBottom = ctx.pagetop - difference + cell.getBottom();
    float neededHeight = cell.remainingHeight();
    if (newBottom > ctx.pagetop - neededHeight) {
for (i = 0; i < size; i++) {
  cell = (PdfCell) cells.get(i);
  float newBottom = ctx.pagetop - difference + cell.getBottom();
  float newTop = ctx.pagetop - difference + cell.getTop(-table.cellspacing());
  if (newTop > indentTop() - currentHeight) {
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

    cell.setBottom(indentTop() - oldTop + cell.getBottom(0));
    ctx.pagetop = cell.getBottom();
  cell = (PdfCell) cells.get(i);
  if (cell.getTop(-table.cellspacing()) > ctx.lostTableBottom) {
    float newBottom = ctx.pagetop - difference + cell.getBottom();
    float neededHeight = cell.remainingHeight();
    if (newBottom > ctx.pagetop - neededHeight) {
for (i = 0; i < size; i++) {
  cell = (PdfCell) cells.get(i);
  float newBottom = ctx.pagetop - difference + cell.getBottom();
  float newTop = ctx.pagetop - difference + cell.getTop(-table.cellspacing());
  if (newTop > indentTop() - currentHeight) {
origin: es.gob.afirma/afirma-crypto-pdf-itext

    cell.setBottom(indentTop() - oldTop + cell.getBottom(0));
    ctx.pagetop = cell.getBottom();
  cell = (PdfCell) cells.get(i);
  if (cell.getTop(-table.cellspacing()) > ctx.lostTableBottom) {
    float newBottom = ctx.pagetop - difference + cell.getBottom();
    float neededHeight = cell.remainingHeight();
    if (newBottom > ctx.pagetop - neededHeight) {
for (i = 0; i < size; i++) {
  cell = (PdfCell) cells.get(i);
  float newBottom = ctx.pagetop - difference + cell.getBottom();
  float newTop = ctx.pagetop - difference + cell.getTop(-table.cellspacing());
  if (newTop > indentTop() - currentHeight) {
com.lowagie.text.pdfPdfCellgetBottom

Javadoc

Returns the lower left y-coordinate.

Popular methods of PdfCell

  • <init>
    Constructs a PdfCell-object.
  • addImage
    Adds an image to this Cell.
  • addLine
  • addList
  • cellpadding
    Gets the cellpadding of a cell..
  • cellspacing
    Gets the cellspacing of a cell.
  • cloneNonPositionParameters
  • firstLineRealHeight
    Calculates what the height of the first line should be so that the content will be flush with the to
  • flushCurrentLine
  • getBorderWidthBottom
  • getBorderWidthInside
    Gets the amount of the border for the specified side that is inside the Rectangle. For non-variable
  • getBorderWidthLeft
  • getBorderWidthInside,
  • getBorderWidthLeft,
  • getBorderWidthRight,
  • getBorderWidthTop,
  • getHeight,
  • getImages,
  • getLeft,
  • getLines,
  • getRight

Popular in Java

  • Running tasks concurrently on multiple threads
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now