using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Common.Helper { public class WebScadaHelper { public static string GetRichTextBoxWebScadaById(int index) { int baseTop = 820; int top = baseTop + index * 100; string strIndex = index.ToString(); string webScada = @" {{device.Name" + strIndex + @"}}"; return webScada; } } }