git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893989 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-10-07 13:46:09 +00:00
parent 36cf0e943e
commit ce05cc8dda
2 changed files with 12 additions and 3 deletions

View File

@ -255,17 +255,25 @@ public class CellCopyPolicy {
}
/**
* If condenseRows is true, a discontinuities in srcRows will be removed when copied to destination
* If condenseRows is true, a discontinuity in srcRows will be removed when copied to destination
* <p>
* For example:
* <p>
* Sheet.copyRows({Row(1), Row(2), Row(5)}, 11, policy) results in rows 1, 2, and 5
* being copied to rows 11, 12, and 13 if condenseRows is True, or rows 11, 11, 15 if condenseRows is false
* @return the condenseRows
* @return the condenseRows setting
*/
public boolean isCondenseRows() {
return condenseRows;
}
/**
* If condenseRows is true, a discontinuity in srcRows will be removed when copied to destination
* <p>
* For example:
* <p>
* Sheet.copyRows({Row(1), Row(2), Row(5)}, 11, policy) results in rows 1, 2, and 5
* being copied to rows 11, 12, and 13 if condenseRows is True, or rows 11, 11, 15 if condenseRows is false
* @param condenseRows the condenseRows to set
*/
public void setCondenseRows(boolean condenseRows) {

View File

@ -186,7 +186,8 @@ public final class CellUtil {
* Note that if you are copying from a source cell from a different type of then you may need to disable style copying
* in the {@link CellCopyPolicy} (HSSF styles are not compatible with XSSF styles, for instance).
*
* This does not shift references in formulas.
* This does not shift references in formulas. The <code>copyRowFrom</code> method on <code>XSSFRow</code>
* and <code>HSSFRow</code> does attempt to shift references in formulas.
*
* @param srcCell The cell to take value, formula and style from
* @param destCell The cell to copy to