"setRangeData"
Sets the data of a scheduler time range (time bar).
Synopsis
shape.setRangeData(int idx, string text);
Parameters
Parameter | Description |
---|---|
idx | The index of the time range whose data should be set. Starts with 0. |
text | The text (data) to be set. |
Description
Sets the data of a scheduler time range (time bar).
Example
Sets the data of the first time range to "data".
main()
{
Scheduler_ewo1.setRangeData(0, "Data");
DebugN(Scheduler_ewo1.getRangeData(0));
}
Assignment
Scheduler ewo