PPTElement.cs 1008 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using DocumentFormat.OpenXml.Presentation;
  5. namespace TEAMModelOS.Test.PPTX
  6. {
  7. public class PPTElement
  8. {
  9. //旋转角度
  10. public int rot { get; set; }
  11. //水平翻转
  12. public bool flipH { get; set; }
  13. //垂直翻转
  14. public bool flipV { get; set; }
  15. //x轴
  16. public long offx { get; set; }
  17. //y轴
  18. public long offy { get; set; }
  19. //宽度
  20. public long extx { get; set; }
  21. //高度
  22. public long exty { get; set; }
  23. //类型
  24. public string type { get; set; }
  25. //文本 /或图片base64
  26. public string text { get; set; }
  27. //文本颜色
  28. public string textColor { get; set; }
  29. //填充颜色
  30. public string fillColor { get; set; }
  31. //图形是否闭合
  32. public bool complete { get; set; }
  33. //字体大小
  34. public int fontSize { get; set; }
  35. }
  36. }