BrightIdeasSoftware.HighlightTextRenderer.DrawTextGdi C# (CSharp) Method

DrawTextGdi() protected method

Draw text using GDI
protected DrawTextGdi ( Graphics g, Rectangle r, string txt ) : void
g System.Drawing.Graphics
r System.Drawing.Rectangle
txt string
return void
        protected override void DrawTextGdi(Graphics g, Rectangle r, string txt)
        {
            if (this.ShouldDrawHighlighting)
                this.DrawGdiTextHighlighting(g, r, txt);

            base.DrawTextGdi(g, r, txt);
        }