FlexPivot for WinForms
AfterScroll イベント (C1FlexGridBase)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : AfterScroll イベント
Fires after the grid scrolls.
シンタックス
'宣言
 
Public Event AfterScroll As RangeEventHandler
public event RangeEventHandler AfterScroll
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、RangeEventArgs 型の引数を受け取りました。次の RangeEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Gets or sets a value indicating whether the new selection should be canceled.  
Gets the range that will be selected after the event.  
Gets the range selected before the event.  
解説
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;
}
参照