/// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="other"></param>
 public VisualElementBase(VisualElementBase other)
 {
     if (other.AnchorArea != null)
     {
         AnchorArea = (AnchorArea)other.AnchorArea.Clone();
     }
     else
     {
         AnchorArea = null;
     }
 }
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="other"></param>
 public VisualElementBase(VisualElementBase other)
 {
     if (other.AnchorArea != null)
         AnchorArea = (AnchorArea)other.AnchorArea.Clone();
     else
         AnchorArea = null;
 }