I'm creating a new doucment with some text on the first page.
There is always a blank page inserted before this text. Is there
anyway to prevent this from happening? I’ve tried setting the section
start to continuous and still get an empty first page.
Here's my code. It looks like the ability to attach files to message has been removed? I can send you the created document with the syles defined.
Document document = new Document(template);<br>
document.removeAllChildren();<br>
DocumentBuilder builder = new DocumentBuilder(document);<br>
builder.getParagraphFormat().setStyleName("Heading 2"); <br>
builder.writeln(title);<br>
Thanks