SmoothingMode.cs 474 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Drawing.Drawing2D.SmoothingMode.cs
  3. //
  4. // Author:
  5. // Stefan Maierhofer <[email protected]>
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002/3 Ximian, Inc
  9. //
  10. using System;
  11. namespace System.Drawing.Drawing2D {
  12. /// <summary>
  13. /// Summary description for SmoothingMode.
  14. /// </summary>
  15. [Serializable]
  16. public enum SmoothingMode {
  17. AntiAlias = 4,
  18. Default = 0,
  19. HighQuality = 2,
  20. HighSpeed = 1,
  21. Invalid = -1,
  22. None = 3
  23. }
  24. }