選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Program.cs 534B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Novacode;
  6. using System.Drawing;
  7. namespace ConsoleApplication3
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. // Create a document.
  14. using (DocX document = DocX.Load(@"Test.docx"))
  15. {
  16. document.ReplaceText("Hio", "World");
  17. document.SaveAs("Test2.docx");
  18. }// Release this document from memory.
  19. }
  20. }
  21. }