224225226227228229230231232233234
* @param spc character spacing in points. */ public void setCharacterSpacing(double spc){ CTTextCharacterProperties rPr = getRPr(); if(spc == 0.0) { if(rPr.isSetSpc()) rPr.unsetSpc(); } else { rPr.setSpc((int)(100*spc)); } }
144145146147148149150151152153154
226227228229230231232233234235236