本文将介绍如何使用spire.presentation for java设置powerpoint表格的行高和列宽。
原文档如下:
import com.spire.presentation.fileformat;
import com.spire.presentation.islide;
import com.spire.presentation.itable;
import com.spire.presentation.presentation;
public class table_row_height_and_column_width {
public static void main(string[] args) throws exception {
//加载powerpoint文档
presentation ppt = new presentation();
ppt.loadfromfile("table.pptx");
//获取第一张幻灯片
islide slide = ppt.getslides().get(0);
//获取幻灯片上的表格
itable table = (itable) slide.getshapes().get(0);
//改变表格第一行的行高和第一列的列宽
table.gettablerows().get(0).setheight(100);
table.getcolumnslist().get(0).setwidth(250);
//保存文档
ppt.savetofile("output.pptx", fileformat.pptx_2013);
ppt.dispose();
}
}
结果文档: