'宣言 Public Event AfterSort As SortColEventHandler
public event SortColEventHandler AfterSort
イベント データ
イベント ハンドラが、このイベントに関連するデータを含む、SortColEventArgs 型の引数を受け取りました。次の SortColEventArgs プロパティには、このイベントの固有の情報が記載されます。
| プロパティ | 解説 |
|---|---|
| Cancel | Gets or sets a value indicating whether the drag operation should be canceled. |
| Col | Gets the column that is being sorted. |
| Handled | Gets or sets a value indicating whether the drag operation has been handled by the event handler. |
| Order | Gets or sets a SortFlags value that determines the sorting order. |
解説
This event only fires if the sorting was caused by a click on a column header cell (see the AllowSorting property). It does not fire after sorting with the Sort(SortFlags,Int32) method.
This event is useful if you want to update user interface elements to reflect the new sorting. To prevent certain columns from being sorted, or to alter their default sorting order, use the Column.AllowSorting or handle the BeforeSort event.
参照