Example #1
0
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
Example #2
0
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }
Example #3
0
 public override void Remove(DrawingElement d)
 {
     System.Console.WriteLine("cannot remove from a PrimitiveElement");
 }
Example #4
0
 public override void Add(DrawingElement d)
 {
     System.Console.WriteLine("cannot add to a Primitive");
 }
Example #5
0
 public abstract void Remove(DrawingElement d);
Example #6
0
 public abstract void Add(DrawingElement d);