Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Program.cs 618B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Novacode;
  6. using System.IO.Packaging;
  7. using System.Diagnostics;
  8. using System.Xml.Linq;
  9. namespace ConsoleApplication1
  10. {
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. using (DocX document = DocX.Load(@"D:\Source Control\DocX\UnitTests\documents\test.docx"))
  16. {
  17. Paragraph p = document.Paragraphs[0];
  18. p.ReplaceText("foo", "bar", false);
  19. document.SaveAs("output2.docx");
  20. }
  21. }
  22. }
  23. }