Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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 document.
  14. using (DocX document = DocX.Load(@"C:\Users\cathal\Downloads\foo.docx"))
  15. {
  16. List<Picture> pictures = document.Pictures;
  17. List<Novacode.Table> imageTable = (from table in document.Tables
  18. where table.Pictures.Count > 0
  19. select table).ToList();
  20. }// Release this document from memory.
  21. }
  22. }
  23. }