# File lib\Win32/Console.rb, line 813
    def Window(*t)
      if t.size != 5
        info = API.GetConsoleScreenBufferInfo( @handle )
        return info[5..8]
      else
        API.SetConsoleWindowInfo(@handle, t[0], t[1], t[2], t[3], t[4])
      end
    end