Пример #1
0
 /// <summary> Scrolls the mouse wheel down by the given ticks. </summary>
 public static void ScrollMouseWheelDown(int ticks)
 {
     InternalHelpers.Scroll(-ticks);
 }
Пример #2
0
 /// <summary> Scrolls the mouse wheel up by the given ticks. </summary>
 public static void ScrollMouseWheelUp(int ticks)
 {
     InternalHelpers.Scroll(ticks);
 }