"getDayText"
    
    Returns the title (text) of a specific day.
Synopsis
shape.getDayText(int idx);
Parameters
| Parameter | Description | 
|---|---|
| idx | The index of the day. Starts with 1. | 
Description
Returns the title (text) of a specific day.
                
                Example
            
Returns the text of the day with the index 1.
main()
{
  DebugN(this.getDayText(1));
}
        Assignment
Scheduler ewo
