2
0

DashStyle.cs 405 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Drawing.Drawing2D.DashStyle.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002/3 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Drawing2D
  11. {
  12. /// <summary>
  13. /// Summary description for DashStyle.
  14. /// </summary>
  15. [Serializable]
  16. public enum DashStyle {
  17. Custom = 5,
  18. Dash = 1,
  19. DashDot = 3,
  20. DashDotDot = 4,
  21. Dot = 2,
  22. Solid = 0
  23. }
  24. }