ATMLCommonLibrary.controls.awb.AWBButton.drawButtonText C# (CSharp) Method

drawButtonText() private method

private drawButtonText ( System e, Color color, int textX, int textY ) : void
e System
color Color
textX int
textY int
return void
        private void drawButtonText(System.Windows.Forms.PaintEventArgs e,
            Color color,
            int textX,
            int textY)
        {
            SolidBrush brush = new SolidBrush(color);
            e.Graphics.DrawString(this.Text, base.Font, brush, textX, textY);
            brush.Dispose();
        }