@brief Set the color of the worksheet tab.
@param worksheet Pointer to a lxw_worksheet instance to be updated. @param color The tab color.
The %worksheet_set_tab_color() function is used to change the color of the worksheet tab:
@code worksheet_set_tab_color(worksheet1, LXW_COLOR_RED); worksheet_set_tab_color(worksheet2, LXW_COLOR_GREEN); worksheet_set_tab_color(worksheet3, 0xFF9900); // Orange. @endcode
The color should be an RGB integer value, see @ref working_with_colors.
See Implementation
@brief Set the color of the worksheet tab.
@param worksheet Pointer to a lxw_worksheet instance to be updated. @param color The tab color.
The %worksheet_set_tab_color() function is used to change the color of the worksheet tab:
@code worksheet_set_tab_color(worksheet1, LXW_COLOR_RED); worksheet_set_tab_color(worksheet2, LXW_COLOR_GREEN); worksheet_set_tab_color(worksheet3, 0xFF9900); // Orange. @endcode
The color should be an RGB integer value, see @ref working_with_colors.