Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
📖HomeBack When using the automation interface to query the properties of objects in the ClearSCADA database, there are three main methods. The examples below read the State0Desc property of a digital point. Note that all examples on this page assume that the script objects referenced have already been set to objects in the ClearSCADA database.
Using the Interface property directly.
sState0Desc=obj.Interface.State0Desc
Using the interface property as part of a second object.
To write to properties of objects in the database, a similar method is followed to the examples shown above. In each case where a property is returned, simply turn the statement around to have a property equal some value. For example, the code below would set the value of the State0Desc property equal to "Stopped".
obj.Property("State0Desc")="Stopped"
Note that the ClearSCADA database schema will summarize which properties can be written to and which are read-only.