Executes immediate read / write operation
Getting
Executes immediate read from programmable logic controller.
Setting
Executes immediate write to programmable logic controller.
VB
Dim MyPLC As New GELink.Controller("192.168.1.45")
Dim MyTag As New GELink.Tag("%R1")
' * set controller instance
MyTag.Controller = MyPLC
' * immediate read
Console.WriteLine(MyTag.Now.ToString())
' * immediate write
MyTag.Now = 100
C#
GELink.Controller MyPLC = new GELink.Controller("192.168.1.45");
GELink.Tag MyTag = new GELink.Tag("%R1");
//set controller instance
MyTag.Controller = MyPLC;
// immediate read
Console.WriteLine(MyTag.Now.ToString());
// immediate write
MyTag.Now = 100