Package org.apache.poi.xslf.usermodel
Class XSLFTableRow
java.lang.Object
org.apache.poi.xslf.usermodel.XSLFTableRow
- All Implemented Interfaces:
Iterable<XSLFTableCell>
Represents a table in a .pptx presentation
-
Method Summary
Modifier and TypeMethodDescriptionaddCell()
getCells()
double
org.openxmlformats.schemas.drawingml.x2006.main.CTTableRow
iterator()
void
mergeCells
(int firstCol, int lastCol) Merge cells of a table row, inclusive.void
setHeight
(double height) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
getXmlObject
public org.openxmlformats.schemas.drawingml.x2006.main.CTTableRow getXmlObject() -
iterator
- Specified by:
iterator
in interfaceIterable<XSLFTableCell>
-
getCells
-
getHeight
public double getHeight() -
setHeight
public void setHeight(double height) -
addCell
-
mergeCells
public void mergeCells(int firstCol, int lastCol) Merge cells of a table row, inclusive. Indices are 0-based.- Parameters:
firstCol
- 0-based index of first column to merge, inclusivelastCol
- 0-based index of last column to merge, inclusive
-