Position.cs 902 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Models.PowerPoint
  5. {
  6. public class Position
  7. {
  8. //旋转角度
  9. public double rot { get; set; } = 0;
  10. //水平翻转
  11. public int flipH { get; set; } = 0;
  12. //垂直翻转
  13. public int flipV { get; set; } = 0;
  14. //x轴
  15. public double x { get; set; } = 0;
  16. //y轴
  17. public double y { get; set; } = 0;
  18. //宽度
  19. public double cx { get; set; } = 0;
  20. //高度
  21. public double cy { get; set; } = 0;
  22. ////初始坐标x
  23. //public Int64 ChX { get; set; } = 0;
  24. ////初始坐标Y
  25. //public Int64 ChY { get; set; } = 0;
  26. ////拉伸宽度
  27. //public Int64 ChCX { get; set; } = 0;
  28. ////拉伸高度
  29. //public Int64 ChCY { get; set; } = 0;
  30. //层级
  31. }
  32. }