Examples of addNewSz()


Examples of org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFont.addNewSz()

    assertEquals(20.0, ctFont.getSzArray(0).getVal(), 0.0);
  }

  public void testFontHeightInPoint() {
    CTFont ctFont=CTFont.Factory.newInstance();
    CTFontSize size=ctFont.addNewSz();
    size.setVal(14);
    ctFont.setSzArray(0,size);

    XSSFFont xssfFont=new XSSFFont(ctFont);
    assertEquals(14,xssfFont.getFontHeightInPoints());
View Full Code Here

Examples of org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFont.addNewSz()

    assertEquals(true,ctFont.getStrikeArray(0).getVal());
  }

  public void testFontHeight() {
    CTFont ctFont=CTFont.Factory.newInstance();
    CTFontSize size=ctFont.addNewSz();
    size.setVal(11);
    ctFont.setSzArray(0,size);

    XSSFFont xssfFont=new XSSFFont(ctFont);
    assertEquals(11,xssfFont.getFontHeightInPoints());
View Full Code Here

Examples of org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFont.addNewSz()

    assertEquals(20.0, ctFont.getSzArray(0).getVal(), 0.0);
  }

  public void testFontHeightInPoint() {
    CTFont ctFont=CTFont.Factory.newInstance();
    CTFontSize size=ctFont.addNewSz();
    size.setVal(14);
    ctFont.setSzArray(0,size);

    XSSFFont xssfFont=new XSSFFont(ctFont);
    assertEquals(14,xssfFont.getFontHeightInPoints());
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

    }


    public void testSetGetFontSize() {
        CTRPr rpr = ctRun.addNewRPr();
        rpr.addNewSz().setVal(new BigInteger("14"));

        XWPFRun run = new XWPFRun(ctRun, p);
        assertEquals(7, run.getFontSize());

        run.setFontSize(24);
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

     * @param size
     */
    public void setFontSize(int size) {
  BigInteger bint=new BigInteger(""+size);
        CTRPr pr = run.isSetRPr() ? run.getRPr() : run.addNewRPr();
        CTHpsMeasure ctSize = pr.isSetSz() ? pr.getSz() : pr.addNewSz();
        ctSize.setVal(bint.multiply(new BigInteger("2")));
    }

    /**
     * This element specifies the amount by which text shall be raised or
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

     * @param size
     */
    public void setFontSize(int size) {
  BigInteger bint=new BigInteger(""+size);
        CTRPr pr = run.isSetRPr() ? run.getRPr() : run.addNewRPr();
        CTHpsMeasure ctSize = pr.isSetSz() ? pr.getSz() : pr.addNewSz();
        ctSize.setVal(bint.multiply(new BigInteger("2")));
    }

    /**
     * This element specifies the amount by which text shall be raised or
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

    }


    public void testSetGetFontSize() {
        CTRPr rpr = ctRun.addNewRPr();
        rpr.addNewSz().setVal(new BigInteger("14"));

        XWPFRun run = new XWPFRun(ctRun, p);
        assertEquals(7, run.getFontSize());

        run.setFontSize(24);
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

    fonts.setHAnsiTheme(STTheme.MINOR_H_ANSI);
    fonts.setCstheme(STTheme.MINOR_BIDI);
    rPr.addNewB().setVal(STOnOff.OFF);
    rPr.addNewBCs().setVal(STOnOff.OFF);
    rPr.addNewColor().setVal("auto");
    rPr.addNewSz().setVal(new BigInteger("24"));
    rPr.addNewSzCs().setVal(new BigInteger("24"));
    CTSdtContentBlock content = block.addNewSdtContent();
    CTP p = content.addNewP();
    p.setRsidR("00EF7E24".getBytes());
    p.setRsidRDefault("00EF7E24".getBytes());
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

     * @param size
     */
    public void setFontSize(int size) {
  BigInteger bint=new BigInteger(""+size);
        CTRPr pr = run.isSetRPr() ? run.getRPr() : run.addNewRPr();
        CTHpsMeasure ctSize = pr.isSetSz() ? pr.getSz() : pr.addNewSz();
        ctSize.setVal(bint.multiply(new BigInteger("2")));
    }

    /**
     * This element specifies the amount by which text shall be raised or
View Full Code Here

Examples of org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr.addNewSz()

    }


    public void testSetGetFontSize() {
        CTRPr rpr = ctRun.addNewRPr();
        rpr.addNewSz().setVal(new BigInteger("14"));

        XWPFRun run = new XWPFRun(ctRun, p);
        assertEquals(7, run.getFontSize());

        run.setFontSize(24);
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.