BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Private Sub grd_PrepareGraphics(ByVal sender As Object, ByVal e As GraphicsEventArgs) ’ok: e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit ’ok: e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias ’wrong: e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit ’wrong: e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit ’wrong if cleartype is disable, ok if cleartype is enabled in system settings: e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixel End Sub ’gridControl1_PrepareGraphics