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()doubleorg.openxmlformats.schemas.drawingml.x2006.main.CTTableRowiterator()voidmergeCells(int firstCol, int lastCol) Merge cells of a table row, inclusive.voidsetHeight(double height) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
getXmlObject
public org.openxmlformats.schemas.drawingml.x2006.main.CTTableRow getXmlObject() -
iterator
- Specified by:
iteratorin 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
-