* @param skipBlanks true to not have blank cells in the ranage on the Clipboard pasted into this range; default false
* @param transpose true to transpose rows and columns when pasting to this range; default false
* @return the real pasted range
*/
public static Range pasteSpecial(Worksheet srcSheet, Rect srcRect, Worksheet dstSheet, int tRow, int lCol, int bRow, int rCol, int pasteType, int pasteOp, boolean skipBlanks, boolean transpose) {
Range rng = Utils.getRange(srcSheet, srcRect.getTop(), srcRect.getLeft(), srcRect.getBottom(), srcRect.getRight());
Range dstRange = Utils.getRange(dstSheet, tRow, lCol, bRow, rCol);
Range pasteRange = rng.pasteSpecial(dstRange, pasteType, pasteOp, skipBlanks, transpose);
if (pasteRange == null) {
showProtectMessage();
}
return pasteRange;
}