123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Test.PPTX.PresentationElement
- {
- public class Content
- {
- public string type { get; set; }
- //文本 /或图片base64
- public string text { get; set; }
- //文本颜色
- public string textColor { get; set; }
- //填充颜色
- public string fillColor { get; set; }
- //图形是否闭合
- public bool complete { get; set; }
- //字体大小
- public int fontSize { get; set; }
- }
- }
|