12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HTEXLib
- {
- public class Border
- {
- public double width { get; set; }
- public string color { get; set; }
- public string type { get; set; }
- /// <summary>
- /// 描边
- /// </summary>
- public string stroke{ get; set; }
- public string dir { get; set; }
- }
- }
|