现阶段我的设置方法是:
IAutoShape tb = slide.getShapes().appendShape(ShapeType.RECTANGLE, rectangle);
tb.getTextFrame().getParagraphs().get(i).setLineSpacing(150F);
但是是固定的150F。
我想根据字体来设置1.5倍行距,但是如下之后发现其实没办法:
float temp1 = tb.getTextFrame().getParagraphs().get(i).getTextRanges().get(0).getFontHeight();
tb.getTextFrame().getParagraphs().get(i).setLineSpacing((float) (temp1 *1.5));
debug之后发现temp1每次都是20+或者15+的样子(这里应该是设置的问题),那么要怎么实现1.5备的行距呢?