using System; using System.Collections.Generic; using System.Text; namespace HiTeachCC.Model.PowerPoint { public class FontStyle { /// /// /// font-family、font-style、font-weight、font-variant、font-stretch、font-size、font-size-adjust、 /// kerning、letter-spacing、word-spacing和text-decoration /// 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; } } }