[]
Fires after the grid scrolls.
public event RangeEventHandler AfterScroll
Type | Description |
---|---|
RangeEventHandler | Fires after the grid scrolls. |
This event allows you to prevent the user from scrolling the grid while an operation is being performed on the current selection.
The code below prevents the grid from scrolling while the grid is in edit mode.
void _flex_BeforeScroll(object sender, RangeEventArgs e)
{
if (_flex.Editor != null)
e.Cancel = true;
}