【发布时间】:2020-08-19 08:16:16
【问题描述】:
我可以在 Aspose 文档中看到,我们可以在 aspose 文档上使用方法 Print (https://apireference.aspose.com/words/net/aspose.words/document/methods/print)
所以我创建了我的 Aspose 文档和一个文档构建器来在文档上写一些东西。 之后我尝试使用 print 方法,但他们告诉我这种方法不存在。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Writeln("TEST");
doc.Print();
我尝试直接选择 PC 上的 Word 文档,但这是同样的问题。你知道为什么我不能使用这个 Print 方法吗?或者也许我怎样才能自己添加这个方法?
【问题讨论】:
标签: c# .net ms-word document aspose