前面我们介绍了如何使用 Spire.Presentation 创建并删除表格,该文将介绍如何在Java应用程序中更改幻灯片文档中的表格内置样式。
首先,请查看示例表格内置样式:
import com.spire.presentation.ITable;
import com.spire.presentation.Presentation;
import com.spire.presentation.FileFormat;
import com.spire.presentation.TableStylePreset;
public class SetTableStyle {
public static void main(String[] args) throws Exception {
//加载示例文档
Presentation presentation = new Presentation();
presentation.loadFromFile("Sample.pptx");
ITable table = null;
for (Object shape : presentation.getSlides().get(0).getShapes()) {
if (shape instanceof ITable) {
table = (ITable) shape;
//设置内置样式
table.setStylePreset(TableStylePreset.MEDIUM_STYLE_1_ACCENT_2);
}
}
//保存文档
presentation.saveToFile("SetTableStyle.pptx", FileFormat.PPTX_2010);
}
}
效果图