Contents
Partner Programs
Sepasoft - MES Modules
Cirrus Link - MQTT Modules
Resources
Knowledge Base Articles
Inductive University
Forum
IA Support
SDK Documentation
All Manual Versions
Ignition 8.0
Ignition 7.9
Ignition 7.8
Scripting_function |
---|
Panel | ||
---|---|---|
| ||
Performs a synchronous write to multiple tags. Synchronous means that execution will not continue until this function has completed, so you will know that a write has been attempted on the provided tags. The first write to fail or time out will throw an exception, but any subsequent tags in the provided list will still be attempted. This function cannot be called from the event dispatch thread, meaning it cannot be called directly from a GUI event like a button press without creating a new thread with a call to system.util.invokeAsynchronous. You can call this from project event scripts like timer scripts. |
Panel | ||
---|---|---|
| ||
This scripting function has no Client Permission restrictions. |
Panel | ||
---|---|---|
| ||
system.tag.writeAllSynchronous(tagPaths, values [, timeout])
String[] tagPaths - The paths of the tags to write to. Object[] values - The values to write. int timeout - How long to wait in milliseconds before timing out pending writes. The default is 45000 milliseconds. [optional]
nothing
All |
Panel | |||||||
---|---|---|---|---|---|---|---|
| |||||||
|