Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Program.cs 604B

1234567891011121314151617181920212223242526
  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 new document.
  14. using (DocX document = DocX.Create(@"Test.docx"))
  15. {
  16. // Add Headers to the document.
  17. document.AddHeaders();
  18. document.AddHeaders();
  19. // Save the document.
  20. document.Save();
  21. }
  22. }
  23. }
  24. }