12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class Position
- {
- //旋转角度
- public Int64 Rot { get; set; } = 0;
- //水平翻转
- public int FlipH { get; set; } = 0;
- //垂直翻转
- public int FlipV { get; set; } = 0;
- //x轴
- public Int64 X { get; set; } = 0;
- //y轴
- public Int64 Y { get; set; } = 0;
- //宽度
- public Int64 Cx { get; set; } = 0;
- //高度
- public Int64 Cy { get; set; } = 0;
- ////初始坐标x
- //public Int64 ChX { get; set; } = 0;
- ////初始坐标Y
- //public Int64 ChY { get; set; } = 0;
- ////拉伸宽度
- //public Int64 ChCX { get; set; } = 0;
- ////拉伸高度
- //public Int64 ChCY { get; set; } = 0;
- //层级
-
- }
- }
|