Example #1
0
        public void Remove(string name)
        {
            InteractivityTool tool = this[name];

            if (tool != null)
            {
                Remove(tool);
            }
        }
Example #2
0
 public void Add(InteractivityTool tool)
 {
     List.Add(tool);
     tool.Owner = this;
 }
 public void Add(InteractivityTool tool)
 {
     List.Add(tool);
     tool.Owner = this;
 }
Example #4
0
 public void Remove(InteractivityTool tool)
 {
     List.Remove(tool);
 }
 public void Remove(InteractivityTool tool)
 {
     List.Remove(tool);
 }