PPTXConnector.cs 464 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml.Serialization;
  5. namespace TEAMModelOS.SDK.Module.PowerPointX.Model
  6. {
  7. public class PPTXConnector : PPTXPosition
  8. {
  9. /// <summary>
  10. ///连接线 p:cxnSp
  11. /// </summary>
  12. public string Type { get; set; }
  13. public string HeadEnd{ get; set; }
  14. public string TailEnd { get; set; }
  15. public string FillColor { get; set; }
  16. }
  17. }