12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HiTeachCC.Model.PowerPoint
- {
- public class FontStyle
- {
- /// <summary>
- ///
- /// font-family、font-style、font-weight、font-variant、font-stretch、font-size、font-size-adjust、
- /// kerning、letter-spacing、word-spacing和text-decoration
- /// </summary>
- public string Color { get; set; }
- public int Size { get; set; }
- public string Type { get; set; }
- public string Bold { get; set; }
- public string Italic { get; set; }
- public string Decoration { get; set; }
- public string VertAlign { get; set; }
- }
- }
|