12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib
- {
- 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 double size { get; set; }
- //inherit 继承父级
- public string family { get; set; }
- public string weight { get; set; }
- public string style { get; set; }
- public string decoration { get; set; }
- public string vertAlign { get; set; }
- public string align { get; set; }
- public string shadow { get; set; }
- }
- }
|