Forum Discussion
karkadil
13 years agoValued Contributor
You don't need Regions at all. To save actual image of the control, just use Picture method of the control.
var pic = Sys.Process(...).Window(...).Picture();
pic.SaveToFile();
As for your problem, I believe that theUIPicture in your case is an onscreen-object, not a picture object
var pic = Sys.Process(...).Window(...).Picture();
pic.SaveToFile();
As for your problem, I believe that theUIPicture in your case is an onscreen-object, not a picture object