Package org.zkoss.zss.model

Examples of org.zkoss.zss.model.Range.merge()


       
        Range range = Ranges.range(sheet, tRow, lCol, bRow, rCol);
        if (merged) {
          range.unMerge();
        } else {
          range.merge(false);
          doHorizontalAlignCenter(selection)
        }
      } else {
        showProtectMessage();
      }
View Full Code Here


    range.setRichEditText(value);
  }
 
  public static void mergeCells(Worksheet sheet, int tRow, int lCol, int bRow, int rCol, boolean across) {
    Range rng = getRange(sheet, tRow, lCol, bRow, rCol);
    rng.merge(across);
  }
 
  public static void unmergeCells(Worksheet sheet, int tRow, int lCol, int bRow, int rCol) {
    Range rng = getRange(sheet, tRow, lCol, bRow, rCol);
    rng.unMerge();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.