Skip to content
< All Topics

List and modify PLC Inputs

Changing or updating a Symbol name will result in overwriting current symbol name( or tag) on the Input.

foreach (var i in Experior.Core.Communication.PLC.Connection.Inputs.Items)
{
    Log.Write("ID = " + i.ID + " Source = " + i.Source + " Symbol = " + i.Symbol + " Name = " + i.Name);
    i.Source = "0 - CON1";
    i.ID = "0 - CON1";
    i.Symbol = i.Name;
    Log.Write("input name = " + i.Symbol);
}
Was this article helpful?
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.