-1

Suppose I created a window by newwin() with cordinates X and Y = (0 and 0) but now I have changed my mind and want to change X and Y coords without recreating window using newwin() then how to do it ? My main goal is to recreate box() with new X and Y coords after resizing terminal (xterm)

Golu
  • 350
  • 2
  • 14

1 Answers1

1

I got it, using mvwin() For example mvwin(win,newY,newX)

Golu
  • 350
  • 2
  • 14