system.user.getScheduleNames
This function is used in Python Scripting.
Description​
Returns a sequence of strings representing the names of all of the schedules available.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.user.getScheduleNames()
Parameters​
Nothing
Returns​
List - A List of Strings that holds the names of all the available schedules.
Scope​
Gateway, Vision Client, Perspective Session
Code Examples​
Example #1
# This example will print a list of all available schedules.
schedules = system.user.getScheduleNames()
for schedule in schedules:
print schedule