Example usage for com.itextpdf.text.html.simpleparser CellWrapper CellWrapper

List of usage examples for com.itextpdf.text.html.simpleparser CellWrapper CellWrapper

Introduction

In this page you can find the example usage for com.itextpdf.text.html.simpleparser CellWrapper CellWrapper.

Prototype

public CellWrapper(final String tag, final ChainedProperties chain) 

Source Link

Document

Creates a new instance of IncCell.

Usage

From source file:com.masscustsoft.service.ToPdf.java

License:Open Source License

/**
 * Creates a Cell.// w w  w . j a va2  s .  co m
 * @param tag   the tag
 * @return   a CellWrapper object
 * @since 5.0.6
 */
public CellWrapper createCell(final String tag) {
    return new CellWrapper(tag, chain);
}