Skip to main content
Skip table of contents

Underline and strike-through in a cell

This example was written in answer to the question Click How to strike through text using iText?


simpletable6

JAVA
/**
 * Example written by Bruno Lowagie in answer to the following question:
 * http://stackoverflow.com/questions/28617095/strikethrough-in-cell-using-itext-in-android-java
 */
package sandbox.tables;

import com.itextpdf.text.Chunk;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Font;
import com.itextpdf.text.Font.FontFamily;
import com.itextpdf.text.Phrase;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import sandbox.WrapToTest;

@WrapToTest
public class SimpleTable6 {
    public static final String DEST = "results/tables/simple_table6.pdf";

    public static void main(String[] args) throws IOException,
            DocumentException {
        File file = new File(DEST);
        file.getParentFile().mkdirs();
        new SimpleTable6().createPdf(DEST);
    }
    public void createPdf(String dest) throws IOException, DocumentException {
        Document document = new Document();
        PdfWriter.getInstance(document, new FileOutputStream(dest));
        document.open();
        PdfPTable table = new PdfPTable(2);
        table.addCell(new Phrase("0123456789"));
        Font font = new Font(FontFamily.HELVETICA, 12f, Font.STRIKETHRU);
        table.addCell(new Phrase("0123456789", font));
        Chunk chunk1 = new Chunk("0123456789");
        chunk1.setUnderline(1.5f, -1);
        table.addCell(new Phrase(chunk1));
        Chunk chunk2 = new Chunk("0123456789");
        chunk2.setUnderline(1.5f, 3.5f);
        table.addCell(new Phrase(chunk2));
        document.add(table);
        document.close();
    }

}


Results

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.