DashStyle.cs 388 B

123456789101112131415161718192021222324
  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. public enum DashStyle {
  16. Custom = 5,
  17. Dash = 1,
  18. DashDot = 3,
  19. DashDotDot = 4,
  20. Dot = 2,
  21. Solid = 0
  22. }
  23. }