TextRenderingHint.cs 384 B

12345678910111213141516171819
  1. //
  2. // System.Drawing.TextRenderingHint.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Dennis Hayes ([email protected])
  6. //
  7. using System;
  8. namespace System.Drawing.Text
  9. {
  10. [Serializable]
  11. public enum TextRenderingHint {
  12. AntiAlias = 4,
  13. AntiAliasGridFit = 3,
  14. ClearTypeGridFit = 5,
  15. SingleBitPerPixel = 2,
  16. SingleBitPerPixelGridFit = 1,
  17. SystemDefault = 0
  18. }
  19. }