Ejemplo n.º 1
0
 private bool ScrollUntil(SomethingToScrollTo check, FailureToScrollHandler handler, ScrollAction action, ScrollPercentCheck percentCheck)
 {
     while (!check(this) && percentCheck())
     {
         action();
     }
     if (!check(this))
     {
         handler(this);
     }
     return !check(this);
 }
Ejemplo n.º 2
0
 private bool ScrollUntil(SomethingToScrollTo check, FailureToScrollHandler handler, ScrollAction action, ScrollPercentCheck percentCheck)
 {
     while (!check(this) && percentCheck())
     {
         action();
     }
     if (!check(this))
     {
         handler(this);
     }
     return(!check(this));
 }