mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-09 21:50:57 -05:00
20 lines
517 B
C#
20 lines
517 B
C#
namespace System.Windows.Forms
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for System.IO.Stream.
|
|
/// </summary>
|
|
using System.Drawing;
|
|
|
|
public static class RichTextBoxExtensions
|
|
{
|
|
public static void AppendText(this RichTextBox box, string text, Color color)
|
|
{
|
|
box.SelectionStart = box.TextLength;
|
|
box.SelectionLength = 0;
|
|
|
|
box.SelectionColor = color;
|
|
box.AppendText(text);
|
|
box.SelectionColor = Color.Black;
|
|
}
|
|
}
|
|
} |