Global arguments library

<< Click to Display Table of Contents >>

Navigation:  Project > Scripts > ST language > Embedded functions >

Global arguments library

Previous pageReturn to chapter overviewNext page

TeslaSCADA IDE project has storage is RAM of the device with global arguments. You can add and get arguments by using control property of the button and functions described below:

 

getglobalargument(Input1, Input2) - used to get value from the global storage of the software. Input1 contains name of the value; Input2 contains default value, if the value is not available in the storage.

 

Example:

getglobalargument(“value”, “1”);

 


putglobalargument(Input1, Input2) - used to put value into the global storage of the software. Input1 contains name of the value; Input2 contains value that will be written in the storage.

 

Example:

putglobalargument(“value”, “1”);