using System; using System.Collections.Generic; using System.Text; using System.Xml.Serialization; namespace TEAMModelOS.SDK.Module.PowerPointX.Model { public abstract class PPTXPosition : PPTXElement { //旋转角度 public double Rot { get; set; } //水平翻转 public bool FlipH { get; set; } //垂直翻转 public bool FlipV { get; set; } //x轴 public double OffX { get; set; } //y轴 public double OffY { get; set; } //宽度 public double ExtX { get; set; } //高度 public double ExtY { get; set; } //层级 public int Index { get; set; } } }