GitUI.RevisionGrid.DrawColumnText C# (CSharp) Метод

DrawColumnText() приватный Метод

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
Результат 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