/// <summary> /// Determines if the position is within the bounds of this object /// </summary> /// <param name="pos"></param> /// <returns></returns> public bool PointInRect(TagPoint pt) => PointInRect(pt.X, pt.Y);
public void OffsetRect(TagPoint pt, bool bPositive = true) => OffsetRect(pt.X, pt.Y, bPositive);