FontStyle.cs 693 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HiTeachCC.Model.PowerPoint
  5. {
  6. public class FontStyle
  7. {
  8. /// <summary>
  9. ///
  10. /// font-family、font-style、font-weight、font-variant、font-stretch、font-size、font-size-adjust、
  11. /// kerning、letter-spacing、word-spacing和text-decoration
  12. /// </summary>
  13. public string Color { get; set; }
  14. public int Size { get; set; }
  15. public string Type { get; set; }
  16. public string Bold { get; set; }
  17. public string Italic { get; set; }
  18. public string Decoration { get; set; }
  19. public string VertAlign { get; set; }
  20. }
  21. }