通过设置markasfinal文档属性为ture,演示文稿便会标记为最终状态,表示作者已完成编辑,这是文档的最终版本,不希望文档有任何其他更改。该文将介绍如何使用spire.presentation在java应用程序中标记演示文稿为最终状态。
import com.spire.presentation.fileformat;
import com.spire.presentation.presentation;
public class markasfinal {
public static void main(string[] args) throws exception {
//加载示例文档
presentation presentation = new presentation();
presentation.loadfromfile("sample.pptx");
//设置文档属性 markasfinal 为true
presentation.getdocumentproperty().set("_markasfinal", true);
//保存文档
presentation.savetofile("output/markasfinal.pptx", fileformat.pptx_2010);
}
}
效果图: