"setRangeDay"
    
    Sets a scheduler time range (time bar) for a specific day.
Synopsis
shape.setRangeDay(int idx, int day);
Parameters
| Parameter | Description | 
|---|---|
| idx | The index of the time range which should be set to a specific day. Starts with 0. | 
| day | The day the time bar should be set to. | 
Description
Sets a scheduler time range (time bar) for a specific day.
                
                Example
            
Sets the scheduler time range with the index 0 to day Wednesday (3).
main()
{
  Scheduler_ewo1.setRangeDay(0,3);
}
        Assignment
Scheduler ewo
