parProps.setFInTable((byte) 1);
parProps.setTableLevel((byte) 1);
int columns = props.getItcMac();
for (int x = 0; x < rows; x++) {
Paragraph cell = this.insertBefore(parProps, StyleSheet.NIL_STYLE);
cell.insertAfter(String.valueOf('\u0007'));
for (int y = 1; y < columns; y++) {
cell = cell.insertAfter(parProps, StyleSheet.NIL_STYLE);
cell.insertAfter(String.valueOf('\u0007'));
}
cell = cell.insertAfter(parProps, StyleSheet.NIL_STYLE, String.valueOf('\u0007'));
cell.setTableRowEnd(props);
}
return new Table(_start, _start + (rows * (columns + 1)), this, 1);
}