// Retrieving the image of the object from the Visualisation file
 public string FetchImageString(string key)
 {
     if (imageTable.ContainsKey(key))
     {
         return(imageTable[key]);
     }
     return(null);
 }