Пример #1
0
        public void GetAllMapElements()
        {
            MeList.Clear();
            MeList.TrimExcess();

            foreach (Table table in TableList)
            {
                MeList.Add(table);
            }

            foreach (DecorationElement decorationElement in DeList)
            {
                MeList.Add(decorationElement);
            }
        }
Пример #2
0
 public void DeleteMapElementFromList(MapElement mapElement)
 {
     MeList.Remove(mapElement);
 }
Пример #3
0
 public void AddMapElementToList(MapElement mapElement)
 {
     MeList.Add(mapElement);
 }