12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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 underline { get; set; }
- // public string vertAlign { get; set; }
- public string align { get; set; }
- /// <summary>
- /// 阴影
- /// </summary>
- public string shadow { get; set; }
- /// <summary>
- /// 缩进?
- /// </summary>
- public int spacing { get; set; }
- /// <summary>
- /// 是否加粗
- /// </summary>
- public bool bold { get; set; }
- /// <summary>
- /// 是否斜体
- /// </summary>
- public bool italic { get; set; }
- /// <summary>
- ///
- /// </summary>
- public double top { get; set; }
- /// <summary>
- ///
- /// </summary>
- public double left { get; set; }
- /// <summary>
- /// 不可见的
- /// </summary>
- public bool Invisible { get; set; }
- public bool isBullet { get; set; }
- public double rot { get; set; }
- public int width { get; set; }
- public bool pictureBullet { get; set; }
- public double bulletSize { get; set; }
- }
- }
|