刚刚用linqpad测试帮助中的如下代码, 总是在下面这行报错, 大致意思是该属性是只读的!
doc.UseNewEngine = true;
- Code: Select all
//实例化Document类的对象
Document doc = new Document();
//加载Word文档
doc.LoadFromFile("Test.docx");
//使用新引擎转换
doc.UseNewEngine = true;
//保存为PDF格式
doc.SaveToFile("Test.pdf", Spire.Doc.FileFormat.PDF);