ShapeStyle.cs 384 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HTEXLib.Models.HTEX
  5. {
  6. public class ShapeStyle
  7. {
  8. /// <summary>
  9. /// 坐标信息
  10. /// </summary>
  11. public Position position { get; set; }
  12. public Border border { get; set; } = new Border();
  13. public Fill fill { get; set; } = new Fill() { type=-1};
  14. }
  15. }