TextDocument doc = TextDocument.newTextDocument();
Form form1 = doc.createForm("Form1");
form1.createButton(doc, btnRtg, "Button", "Push Button");
Paragraph para = doc.addParagraph("Insert a Label here.");
Form form2 = doc.createForm("Form2");
form2.createLabel(para, btnRtg, "Label", "Label");
Form form3 = doc.createForm("Form3");
Table table1 = Table.newTable(doc, 2, 2);
Cell cell = table1.getCellByPosition("A1");