Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031
  1. using System.Drawing;
  2. namespace Novacode
  3. {
  4. /// <summary>
  5. /// Represents a border of a table or table cell
  6. /// Added by lckuiper @ 20101117
  7. /// </summary>
  8. public class Border
  9. {
  10. public BorderStyle Tcbs { get; set; }
  11. public BorderSize Size { get; set; }
  12. public int Space { get; set; }
  13. public Color Color { get; set; }
  14. public Border()
  15. {
  16. this.Tcbs = BorderStyle.Tcbs_single;
  17. this.Size = BorderSize.one;
  18. this.Space = 0;
  19. this.Color = Color.Black;
  20. }
  21. public Border(BorderStyle tcbs, BorderSize size, int space, Color color)
  22. {
  23. this.Tcbs = tcbs;
  24. this.Size = size;
  25. this.Space = space;
  26. this.Color = color;
  27. }
  28. }
  29. }