Redrawing portions of ncurses window border

Hey guys,

trying to figure out the best way to redraw a window border once a portion of it has been cleared by wclrtoeol(). Right now, I'm simply applying wborder() to the
window. Does this redraw the entire border when only a portion of the border is
needed? Are there any alternative methods that I can use so as I don't need to
do this? Perhaps something that would allow me to specify the specific col and
row which needs to be refreshed.

Any help would be appreciated


Last edited on
Actually figured this out using mvwvline (win, line, winWidth- 1, ACS_VLINE, 1);
Worked for my purposes atm as I only needed to update a single line. I suppose when I update other portions of the window I'll use wborder().
Topic archived. No new replies allowed.