"setDayColor"
Sets the color of a day for the scheduler ewo.
Synopsis
shape.setDayColor(int idx, string color);
Parameters
Parameter | Description |
---|---|
idx | The index of the day. Monday = 1. |
color | The color string like "blue". |
Description
Sets the color of a day for the scheduler ewo.
Example
Sets the color of Tuesday to "blue".
main()
{
Scheduler_ewo1.setDayColor(2, "blue");
}
Assignment
Scheduler ewo