According to the Ranorex API documentation I can use the Mouse.ScrollWheel method to simulate scrolling of the the mouse wheel. However, after I set the focus on my application the following code does not scroll the mouse wheel in either firection. Any ideas? Thanks
Mouse.ScrollWheel(-120);
Report.Info("Mouse Scroll Down");
Mouse.ScrollWheel(120);
Report.Info("Mouse Scroll Up");