Spire.Doc for Java 14.1.3 现已正式发布。该版本支持为表格应用自定义样式,支持使用 removeSelf() 方法删除样式,并支持从模板文档中克隆样式。同时,一些在转换 Word 到 PDF 或 Markdown,以及更新目录(TOC)或页码域时出现的问题也得以成功修复。更多详情如下。 新功能: 新增 removeSelf() 方法支持移除样式。 document.getStyles().get("style1").removeSelf(); 支持为表格应用自定义样式。 Document doc = new Document(); Section section = doc.addSection(); TableStyle tableStyle = (TableStyle) doc.getStyles().add(StyleType.Table_Style, "TestTableStyle1"); tableStyle.setHorizontalAlignment(RowAlignment.Center); tableStyle.getBorders().setColor(Color.BLUE); tableStyle.getBorders().setBorderType(BorderStyle.Single);…