public AsciiPen(string str, AsciiColor color) { if(string.IsNullOrEmpty(str)) throw new ArgumentException("null or empty string is not allowed", str); m_color = color; StartCap = string.Empty; EndCap = string.Empty; String = str; }
public AsciiPen(char character, AsciiColor color) : this(character.ToString(), color) { }
public void Clear(AsciiColor color) { m_buffer.Init(color); Invalidate(ClientRectangle); }
public void Clear(AsciiColor color) { m_surface.Clear(color); }
public CellDescription(char character, AsciiColor color) { Character = character; Color = color; }