12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Test.PPTX.PresentationElement
- {
- public class Position
- {
- //旋转角度
- public int rot { get; set; }
- //水平翻转
- public bool flipH { get; set; }
- //垂直翻转
- public bool flipV { get; set; }
- //x轴
- public long offx { get; set; }
- //y轴
- public long offy { get; set; }
- //宽度
- public long extx { get; set; }
- }
- }
|