123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Serialization;
- namespace TEAMModelOS.SDK.Module.PowerPointX.Model
- {
- public class PPTXConnector : PPTXPosition
- {
- /// <summary>
- ///连接线 p:cxnSp
- /// </summary>
- public string Type { get; set; }
- public string HeadEnd{ get; set; }
- public string TailEnd { get; set; }
- public string FillColor { get; set; }
- }
- }
|