Set docx properties using library .docx
问题 How to set properties like title, author, subject for a file created with docx library for .net ? docx 回答1: The DocX project that you provided appears to be able to easily access the metadata properties that you are referring to and can do so quite easily by using the CoreProperties property as seen below : // Load your Document var wordFile = Novacode.DocX.Load(@"your-docx-file-path"); // Access Metadata properties var props = wordFile.CoreProperties; The issue here is that this collection