// update the merged cells (requires a WBH, that's why it's here)
WorkSheetHandle wsh = this.getWorkSheet(NewSheetName);
if (wsh!=null) {
List mc = wsh.getMysheet().getMergedCellsRecs();
for (int i=0;i<mc.size();i++) {
Mergedcells mrg = (Mergedcells)mc.get(i);
if (mrg != null)mrg.initCells(this);
}
// now conditional formats
/*
mc = wsh.getMysheet().getConditionalFormats();
for (int i=0;i<mc.size();i++) {