< All Topics Main Model Modifications Examples List and modify PLC Inputs List and modify PLC Inputs PostedNovember 4, 2021 UpdatedNovember 4, 2021 ByKasper Vestrup 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); }