GitUI.RevisionGrid.DrawColumnText C# (CSharp) Method

DrawColumnText() private method

private DrawColumnText ( Graphics gc, string text, Font font, Color color, Rectangle bounds ) : void
gc System.Drawing.Graphics
text string
font System.Drawing.Font
color Color
bounds System.Drawing.Rectangle
return void
        private void DrawColumnText(Graphics gc, string text, Font font, Color color, Rectangle bounds)
        {
            TextRenderer.DrawText(gc, text, font, bounds, color, TextFormatFlags.EndEllipsis | TextFormatFlags.NoPrefix);
        }
RevisionGrid