We have a set operator only for the Location, please set the new location as follows:
Code: click into code to enlarge
Point location = form.Location;
location.X = 5;
form.Location = location;
or
Code: click into code to enlarge
form.Location = new Point(5, form.Location.Y);
Jenö
Ranorex Team |