Alguem me ajuda a definir uma table com tamanho especifico?
Se eu faço assim:
float[] widths = {0.1f, 0.1f, 0.05f, 0.75f};
widths[0] = 10f;
widths[1] = 10f;
widths[2] = 10f;
widths[3] = 10f;
table = new PdfPTable(4);
table.setWidths(widths);
ele só altera a largura das células…eu quero reduzir o tamanho da tabela.
Estou utilizando o itext
