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; } /// /// 描边 /// public string stroke{ get; set; } public string dir { get; set; } } }