Exemplo n.º 1
0
 public bool MoveWithin(List <Shape> shapes, PointF target, GrabMovement move, Transaction transaction)
 {
     if (!(Element is IShapeContainer))
     {
         return(false);
     }
     return(ElementAsContainer.MoveWithin(shapes, target, move, transaction));
 }
Exemplo n.º 2
0
 public IEnumerator <Shape> GetEnumerator()
 {
     if (!(Element is IShapeContainer))
     {
         return(EmptyList.GetEnumerator());
     }
     return(ElementAsContainer.GetEnumerator());
 }
Exemplo n.º 3
0
 public void FinishedModifyingContents(Transaction transaction, GrabMovement move = null)
 {
     ElementAsContainer?.FinishedModifyingContents(transaction, move);
 }