Turns on specified attributes.
attron(Attributes) char *Attributes;
wattron(Window, Attributes) WINDOW *Window; char *Attributes;
The attron and wattron subroutines turn on specified attributes without affecting any others. The attron subroutine turns the specified attributes on in stdscr. The wattron subroutine turns the specified attributes on in the specified window.
Attributes | Specifies which attributes to turn on. |
Window | Specifies the window in which to turn on the specified attributes. |
attron(A_UNDERLINE);
wattron(my_window, A_UNDERLINE);
These subroutines are part of Base Operating System (BOS) Runtime.
Curses Overview for Programming in AIX General Programming Concepts: Writing and Debugging Programs.
List of Curses Subroutines in AIX General Programming Concepts: Writing and Debugging Programs.
Setting Video Attributes and Curses Options in AIX General Programming Concepts: Writing and Debugging Programs.