system.user.getScheduleNames
This feature is new in Ignition version 7.8.0
Description
Returns a sequence of strings representing the names of all of the schedules available.
Syntax
-
Parameters
none
-
Returns
List - A List of Strings that holds the names of all the available schedules.
-
Scope
All
Code Examples
Code Snippet
#This example will print a list of all available schedules:
schedules
=
system.user.getScheduleNames()
for
schedule
in
schedules:
print
schedule
Output
A
Always
B
C
Example
MyComposite
MySchedule