示例#1
0
        public Point ClickFace()
        {
            if (FaceRectangle == Rectangle.Empty)
            {
                throw new InvalidOperationException();
            }

            var point = FaceRectangle.Center();

            Click(point, MouseButton.Left);

            return(point);
        }