Core.GetActiveTimedFunctionEndTime
Gets the next End Time for the named Timed Function.
Description
All Timed Functions will calculate an End Time based on when they’ll next occur. If they are Periodic, this value will reset every so often. If they are Variable, then the End Time will be between the Minimum Period and Period ranges.
Example Usage (C#)
//Getting the next End Time for a Timed Function
public bool Invoke() {
double endTime = _core.GetActiveTimedFunctionEndTime("TimedFunctionName");
return true;
}
Parameters
string |
methodName |
The name of the Method in SILVIA’s internal scripts to find. |
Returns
A double representing the next End Time for the Timed Function, in seconds.
See Also
- Core.SetActiveTimedFunctionEndTime