public void setBulletFontSize(double size){
CTTextParagraphProperties pr = _p.isSetPPr() ? _p.getPPr() : _p.addNewPPr();
CTTextBulletSizePoint pt = pr.isSetBuSzPts() ? pr.getBuSzPts() : pr.addNewBuSzPts();
pt.setVal((int)(size*1000));
if(pr.isSetBuSzPct()) pr.unsetBuSzPct();
}
/**
* Specifies the indent size that will be applied to the first line of text in the paragraph.
*