Set color of a range.
xls_SetColor(backgroundColor [, fontColor])
Background color in RGB [255, 0, 255].
Font color in RGB [255, 0, 255].
xls_NewExcel(); xls_AddWorkbook(); xls_SetVisible(%t); xls_SetData("background"); xls_SetColor([255, 0, 0]); sleep(1000); xls_SetData("background + font"); xls_SetColor([0, 255, 0], [255, 0, 0]); sleep(1000); xls_SetSave(%t); xls_Close(); xls_Quit();