Exemple #1
0
 private void OnScrollChange(object sender, HtmlScrollEventArgs e)
 {
     OnScrollChange(e);
 }
Exemple #2
0
 /// <summary>
 /// On html renderer scroll request adjust the scrolling of the panel to the requested location.
 /// </summary>
 protected virtual void OnScrollChange(HtmlScrollEventArgs e)
 {
     UpdateScroll(new Point((int)e.X, (int)e.Y));
 }