|
|
@ -70,6 +70,7 @@ public class IncCell implements TextElementArray { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public IncCell(String tag, ChainedProperties props) { |
|
|
|
public IncCell(String tag, ChainedProperties props) { |
|
|
|
cell = new PdfPCell((Phrase) null); |
|
|
|
cell = new PdfPCell((Phrase) null); |
|
|
|
|
|
|
|
cell.setHorizontalAlignment(Element.ALIGN_UNDEFINED); |
|
|
|
String value = props.getProperty("colspan"); |
|
|
|
String value = props.getProperty("colspan"); |
|
|
|
if (value != null) |
|
|
|
if (value != null) |
|
|
|
cell.setColspan(Integer.parseInt(value)); |
|
|
|
cell.setColspan(Integer.parseInt(value)); |
|
|
|