Interface Table.Row
- All Known Implementing Classes:
StandardRow
- Enclosing interface:
Table
public static interface Table.Row
Represents a row within a table that can be manipulated by the office stamper. This interface provides methods
for row-level operations such as removal.
-
Method Summary
Modifier and TypeMethodDescriptionorg.docx4j.wml.TrasTr()Returns the underlying docx4jTrobject.copy()Creates a deep copy of this row.hooks()Returns the hooks associated with this row.voidremove()Removes the entire row from the table.voidremoveComment(Comment comment) Removes a comment from this row.table()Returns the table that this row belongs to.
-
Method Details
-
remove
void remove()Removes the entire row from the table. This operation is irreversible and will delete all content within the row. -
table
-
copy
-
removeComment
-
hooks
-
asTr
org.docx4j.wml.Tr asTr()Returns the underlying docx4jTrobject.- Returns:
- the
Trobject.
-