1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using HTEXLib.Models.HTEX;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib
- {
- public class FontStyle
- {
- public Fill fill { get; set; }
- public Border border { get; set; }
- /// <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 double width { get; set; }
- // //public bool pictureBullet { get; set; }
- // public double bulletSize { get; set; }
- public Effect effect { get; set; }
- }
- }
|