Htex.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Service.Model.PowerPoint
  5. {
  6. public class Htex
  7. {
  8. public Htex() {
  9. slides = new List<string>();
  10. //size = new PptSize();
  11. //FontStyles = new Dictionary<string, FontStyle>();
  12. //Fills = new Dictionary<string, Fill>();
  13. //ParagraphStyles = new Dictionary<string, ParagraphStyle>();
  14. //BuChars = new Dictionary<string, BuChar>();
  15. //Borders = new Dictionary<string, Border>();
  16. }
  17. public HtexSize size { get; set; }
  18. //缩略图
  19. public string thumbnail { get; set; }
  20. //PPT幻灯片集合
  21. // public List<string> HiXmls { get; set; }
  22. public List<string> slides { get; set; }
  23. // public string PptUrl { get; set; }
  24. // public string Sha1Code { get; set; }
  25. //页数
  26. public int page { get; set; }
  27. //public Dictionary<string, FontStyle> FontStyles { get;set;}
  28. //public Dictionary<string, Fill> Fills { get; set; }
  29. //public Dictionary<string, ParagraphStyle> ParagraphStyles { get; set; }
  30. //public Dictionary<string, BuChar> BuChars { get; set; }
  31. //public Dictionary<string, Border> Borders { get; set; }
  32. }
  33. public class HtexSize
  34. {
  35. //宽度
  36. public double width { get; set; }
  37. //高度
  38. public double height { get; set; }
  39. }
  40. }