Position.cs 515 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Test.PPTX.PresentationElement
  5. {
  6. public class Position
  7. {
  8. //旋转角度
  9. public int rot { get; set; }
  10. //水平翻转
  11. public bool flipH { get; set; }
  12. //垂直翻转
  13. public bool flipV { get; set; }
  14. //x轴
  15. public long offx { get; set; }
  16. //y轴
  17. public long offy { get; set; }
  18. //宽度
  19. public long extx { get; set; }
  20. }
  21. }