Uses of Class
org.apache.poi.xwpf.usermodel.XWPFTableRow
-
Packages that use XWPFTableRow Package Description org.apache.poi.xwpf.usermodel -
-
Uses of XWPFTableRow in org.apache.poi.xwpf.usermodel
Fields in org.apache.poi.xwpf.usermodel with type parameters of type XWPFTableRow Modifier and Type Field Description protected java.util.List<XWPFTableRow>
XWPFTable. tableRows
Methods in org.apache.poi.xwpf.usermodel that return XWPFTableRow Modifier and Type Method Description XWPFTableRow
XWPFTable. createRow()
create a new XWPFTableRow object with as many cells as the number of columns defined in that momentXWPFTableRow
XWPFTable. getRow(int pos)
XWPFTableRow
XWPFTable. getRow(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRow row)
returns the XWPFRow which belongs to the CTRow row if this row is not existing in the table null will be returnedXWPFTableRow
XWPFTableCell. getTableRow()
XWPFTableRow
XWPFTable. insertNewTableRow(int pos)
inserts a new tablerowMethods in org.apache.poi.xwpf.usermodel that return types with arguments of type XWPFTableRow Modifier and Type Method Description java.util.List<XWPFTableRow>
XWPFTable. getRows()
Methods in org.apache.poi.xwpf.usermodel with parameters of type XWPFTableRow Modifier and Type Method Description void
XWPFTable. addRow(XWPFTableRow row)
add a new Row to the tableboolean
XWPFTable. addRow(XWPFTableRow row, int pos)
add a new Row to the table at position posConstructors in org.apache.poi.xwpf.usermodel with parameters of type XWPFTableRow Constructor Description XWPFSDTCell(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSdtCell sdtCell, XWPFTableRow xwpfTableRow, IBody part)
XWPFSDTContentCell(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSdtContentCell sdtContentCell, XWPFTableRow xwpfTableRow, IBody part)
XWPFTableCell(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTc cell, XWPFTableRow tableRow, IBody part)
If a table cell does not include at least one block-level element, then this document shall be considered corrupt
-