public monitorCell getCell(int key)
        {
            monitorCell t = null;

            this.AllData.TryGetValue(key.ToString(), out t);
            return(t);
        }
        public monitorCell getCell(string key)
        {
            monitorCell t = null;

            this.AllData.TryGetValue(key, out t);
            return(t);
        }