# File lib\Win32/Console.rb, line 711
    def WriteRect( buffer, left, top, right, bottom )
      col = right  - left + 1
      row = bottom - top  + 1
      API.WriteConsoleOutput( @handle, buffer, col, row, 0, 0, 
                             left, top, right, bottom )
    end