DashStyle.cs 362 B

123456789101112131415161718192021222324
  1. //
  2. // System.Drawing.Drawing2D.DashStyle.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002 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,
  17. Dash,
  18. DashDot,
  19. DashDotDot,
  20. Dot,
  21. Solid
  22. }
  23. }