form2.createLabel(para, btnRtg, "Label", "Label");
Form form3 = doc.createForm("Form3");
Table table1 = Table.newTable(doc, 2, 2);
Cell cell = table1.getCellByPosition("A1");
para = cell.addParagraph("Insert a text box here.");
form3.createTextBox(para, btnRtg, "Text Box", "TextBox", true);
Assert.assertNotNull(doc.getFormByName("Form1"));
doc.save(ResourceUtilities.newTestOutputFile("TestCreateForm.odt"));