12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Models.PowerPoint
- {
- public class Position
- {
- //旋转角度
- public double rot { get; set; } = 0;
- //水平翻转
- public int flipH { get; set; } = 0;
- //垂直翻转
- public int flipV { get; set; } = 0;
- //x轴
- public double x { get; set; } = 0;
- //y轴
- public double y { get; set; } = 0;
- //宽度
- public double cx { get; set; } = 0;
- //高度
- public double 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;
- //层级
-
- }
- }
|