This enumeration is used by the System.Drawing.Graphics.TextRenderingHint to determine the quality with which text is rendered on the graphics surface. As will all the GDI+ rendering hints, there is a trade-off between rendering quality and speed, from SingleBitPerPixel to ClearTypeGridFit . public enum TextRenderingHint { SystemDefault = 0 , SingleBitPerPixelGridFit = 1 , SingleBitPerPixel = 2 , AntiAliasGridFit = 3 , AntiAlias = 4 , ClearTypeGridFit = 5 } Hierarchy System.Object Returned BySystem.Drawing.Graphics.TextRenderingHint Passed ToSystem.Drawing.Graphics.TextRenderingHint |