Graphics.TextBuffer.Print C# (CSharp) Method

Print() public method

public Print ( int X, int Y, string Str ) : void
X int
Y int
Str string
return void
        public void Print(int X, int Y, string Str)
        {
            Print(Y * W + X, Str);
        }

Same methods

TextBuffer::Print ( int X, int Y, string Str, Graphics.Color Fg, Graphics.Color Bg ) : void
TextBuffer::Print ( int I, string Str ) : void
TextBuffer::Print ( int I, string Str, Graphics.Color Fg, Graphics.Color Bg ) : void