Ejemplo n.º 1
0
 /// <summary> Scrolls the mouse wheel down by the given ticks. </summary>
 public static void ScrollMouseWheelDown(int ticks)
 {
     InternalHelpers.Scroll(-ticks);
 }
Ejemplo n.º 2
0
 /// <summary> Scrolls the mouse wheel up by the given ticks. </summary>
 public static void ScrollMouseWheelUp(int ticks)
 {
     InternalHelpers.Scroll(ticks);
 }