1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class Fill
- {
- /// <summary>
- /// [a:noFill, solidFill, gradFill, blipFill, pattFill, grpFill]
- ///0,无填充 1.纯色填充 2.渐变填充 3.图片或纹理填充 4.图案填充
- /// </summary>
- public int Type { get; set; }
- public string Color { get; set; }
- public string Image { get; set; }
- public FillStyle FillStyle { get; set; }
- }
- public class FillStyle {
- public int Left { get; set; } = 0;
- public int Top { get; set; } = 0;
- public int Right { get; set; } = 0;
- public int Bottom { get; set; } = 0;
- }
- }
|