'宣言 Public Event GridChanged As GridChangedEventHandler
public event GridChangedEventHandler GridChanged
イベント データ
イベント ハンドラが、このイベントに関連するデータを含む、GridChangedEventArgs 型の引数を受け取りました。次の GridChangedEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
c1 | Gets the range's first column index. |
c2 | Gets the range's last column index. |
GridChangedType | The type of action that caused the event to fire. |
r1 | Gets the range's first row index. |
r2 | Gets the range's last row index. |
解説
This is a general event that fires before more specific events. For example, if the user drags a column with the mouse, the control fires the BeforeDragColumn, GridChanged, and AfterDragColumn events.
The GridChanged event allows you to create a centralized handler for all types of grid events. It does not provide detailed arguments for every event, nor the option of canceling user actions.
参照