ATSCADA Advanced Programming Tag Read/Write

In advanced programming,sometimes we need to read the tag value or write the tag value to process and control
In the section, I’ll show you how to write or read tag value:

 

1. Read value of Tag:

string ReadValueTag = iDriver.Task(“task name”).Tag(“tag name”).Value;

2. Write value to Tag:

iDriver.Task(“task name”).Tag(“tag name”).Value = “value”;

Leave a Reply