Java Code Examples for com.lowagie.text.pdf.PdfPCell#setPaddingRight()
The following examples show how to use
com.lowagie.text.pdf.PdfPCell#setPaddingRight() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PDFUtils.java From dhis2-core with BSD 3-Clause "New" or "Revised" License | 5 votes |
public static PdfPCell resetPaddings( PdfPCell cell, float top, float bottom, float left, float right ) { cell.setPaddingTop( top ); cell.setPaddingBottom( bottom ); cell.setPaddingLeft( left ); cell.setPaddingRight( right ); return cell; }
Example 2
Source File: PdfRuntimeDependenciesReport.java From javamelody with Apache License 2.0 | 5 votes |
private void writeHeader() throws DocumentException { final List<String> headers = new ArrayList<String>(); headers.add("Beans"); headers.addAll(calledBeans); final int[] relativeWidths = new int[headers.size()]; Arrays.fill(relativeWidths, 0, headers.size(), 1); relativeWidths[0] = 4; final PdfPTable table = new PdfPTable(headers.size()); table.setWidthPercentage(100); table.setWidths(relativeWidths); table.setHeaderRows(1); final PdfPCell defaultCell = table.getDefaultCell(); defaultCell.setGrayFill(0.9f); defaultCell.setHorizontalAlignment(Element.ALIGN_CENTER); defaultCell.setVerticalAlignment(Element.ALIGN_MIDDLE); defaultCell.setPaddingLeft(0); defaultCell.setPaddingRight(0); for (final String header : headers) { table.addCell(new Phrase(header, boldCellFont)); // pas la première entête de colonne defaultCell.setRotation(90); } defaultCell.setRotation(0); defaultCell.setPaddingLeft(2); defaultCell.setPaddingRight(2); currentTable = table; }
Example 3
Source File: PdfMBeansReport.java From javamelody with Apache License 2.0 | 5 votes |
private static PdfPTable createAttributesTable() { final PdfPTable table = new PdfPTable(3); table.setWidthPercentage(100); final PdfPCell defaultCell = table.getDefaultCell(); defaultCell.setPaddingLeft(2); defaultCell.setPaddingRight(2); defaultCell.setVerticalAlignment(Element.ALIGN_TOP); defaultCell.setBorder(0); return table; }
Example 4
Source File: SimpleCell.java From gcs with Mozilla Public License 2.0 | 4 votes |
/** * Creates a PdfPCell with these attributes. * * @param rowAttributes * @return a PdfPCell based on these attributes. */ public PdfPCell createPdfPCell(SimpleCell rowAttributes) { PdfPCell cell = new PdfPCell(); cell.setBorder(NO_BORDER); SimpleCell tmp = new SimpleCell(CELL); tmp.setSpacing_left(spacing_left); tmp.setSpacing_right(spacing_right); tmp.setSpacing_top(spacing_top); tmp.setSpacing_bottom(spacing_bottom); tmp.cloneNonPositionParameters(rowAttributes); tmp.softCloneNonPositionParameters(this); cell.setCellEvent(tmp); cell.setHorizontalAlignment(rowAttributes.horizontalAlignment); cell.setVerticalAlignment(rowAttributes.verticalAlignment); cell.setUseAscender(rowAttributes.useAscender); cell.setUseBorderPadding(rowAttributes.useBorderPadding); cell.setUseDescender(rowAttributes.useDescender); cell.setColspan(colspan); if (horizontalAlignment != Element.ALIGN_UNDEFINED) { cell.setHorizontalAlignment(horizontalAlignment); } if (verticalAlignment != Element.ALIGN_UNDEFINED) { cell.setVerticalAlignment(verticalAlignment); } if (useAscender) { cell.setUseAscender(useAscender); } if (useBorderPadding) { cell.setUseBorderPadding(useBorderPadding); } if (useDescender) { cell.setUseDescender(useDescender); } float p; float sp_left = spacing_left; if (Float.isNaN(sp_left)) { sp_left = 0f; } float sp_right = spacing_right; if (Float.isNaN(sp_right)) { sp_right = 0f; } float sp_top = spacing_top; if (Float.isNaN(sp_top)) { sp_top = 0f; } float sp_bottom = spacing_bottom; if (Float.isNaN(sp_bottom)) { sp_bottom = 0f; } p = padding_left; if (Float.isNaN(p)) { p = 0f; } cell.setPaddingLeft(p + sp_left); p = padding_right; if (Float.isNaN(p)) { p = 0f; } cell.setPaddingRight(p + sp_right); p = padding_top; if (Float.isNaN(p)) { p = 0f; } cell.setPaddingTop(p + sp_top); p = padding_bottom; if (Float.isNaN(p)) { p = 0f; } cell.setPaddingBottom(p + sp_bottom); Element element; for (Iterator i = content.iterator(); i.hasNext();) { element = (Element) i.next(); cell.addElement(element); } return cell; }
Example 5
Source File: SimpleCell.java From itext2 with GNU Lesser General Public License v3.0 | 4 votes |
/** * Creates a PdfPCell with these attributes. * @param rowAttributes * @return a PdfPCell based on these attributes. */ public PdfPCell createPdfPCell(SimpleCell rowAttributes) { PdfPCell cell = new PdfPCell(); cell.setBorder(NO_BORDER); SimpleCell tmp = new SimpleCell(CELL); tmp.setSpacing_left(spacing_left); tmp.setSpacing_right(spacing_right); tmp.setSpacing_top(spacing_top); tmp.setSpacing_bottom(spacing_bottom); tmp.cloneNonPositionParameters(rowAttributes); tmp.softCloneNonPositionParameters(this); cell.setCellEvent(tmp); cell.setHorizontalAlignment(rowAttributes.horizontalAlignment); cell.setVerticalAlignment(rowAttributes.verticalAlignment); cell.setUseAscender(rowAttributes.useAscender); cell.setUseBorderPadding(rowAttributes.useBorderPadding); cell.setUseDescender(rowAttributes.useDescender); cell.setColspan(colspan); if (horizontalAlignment != Element.ALIGN_UNDEFINED) cell.setHorizontalAlignment(horizontalAlignment); if (verticalAlignment != Element.ALIGN_UNDEFINED) cell.setVerticalAlignment(verticalAlignment); if (useAscender) cell.setUseAscender(useAscender); if (useBorderPadding) cell.setUseBorderPadding(useBorderPadding); if (useDescender) cell.setUseDescender(useDescender); float p; float sp_left = spacing_left; if (Float.isNaN(sp_left)) sp_left = 0f; float sp_right = spacing_right; if (Float.isNaN(sp_right)) sp_right = 0f; float sp_top = spacing_top; if (Float.isNaN(sp_top)) sp_top = 0f; float sp_bottom = spacing_bottom; if (Float.isNaN(sp_bottom)) sp_bottom = 0f; p = padding_left; if (Float.isNaN(p)) p = 0f; cell.setPaddingLeft(p + sp_left); p = padding_right; if (Float.isNaN(p)) p = 0f; cell.setPaddingRight(p + sp_right); p = padding_top; if (Float.isNaN(p)) p = 0f; cell.setPaddingTop(p + sp_top); p = padding_bottom; if (Float.isNaN(p)) p = 0f; cell.setPaddingBottom(p + sp_bottom); Element element; for (Iterator i = content.iterator(); i.hasNext(); ) { element = (Element)i.next(); cell.addElement(element); } return cell; }