如何在 C# 中使用 Xceed 删除 Word 文件的相关人员(作者和修改者)属性

How to remove the Related People (Author and Modified By) property of Word file using Xceed in C#

我正在使用 Xceed 库创建一个 word 文件。现在我想删除word文档的相关人员(作者和修改者)属性。

这是我的代码:

using Xceed.Words.NET;
using Xceed.Document.NET;
using Image = Xceed.Document.NET.Image;
using Paragraph = Xceed.Document.NET.Paragraph;
using Formatting = Xceed.Document.NET.Formatting;
using Font = Xceed.Document.NET.Font;

我怎样才能做到这一点?

回答我自己的问题,这可以通过添加 AddCoreProperty 来完成,如下所示:

// Load your Document
var doc = DocX.Load(@"your-docx-file-path");
// Access Metadata properties
var props = doc.CoreProperties;
// Update Metadata
doc.AddCoreProperty("cp:lastModifiedBy", "");
doc.AddCoreProperty("dc:creator", "");
doc.Save();