ARCed.Controls.EventTextBox.AppendText C# (CSharp) Метод

AppendText() публичный Метод

Appends the given string and draws it in the specified color
public AppendText ( string text, System.Drawing.Color color ) : void
text string String to append to the end of the current text.
color System.Drawing.Color Color to use to draw the string.
Результат void
        public void AppendText(string text, Color color)
        {
            int start = Text.Length;
            base.AppendText(text);
            Select(start, text.Length);
            SelectionColor = color;
        }