データの並べ替えが完了した後に発生します。
具体的には、以下の操作時にイベントが発生します。
・ユーザーが列ヘッダをクリック
・ColUserSortIndicatorプロパティに$ColUserSortIndicatorAscending(並べ替え/昇順)、$ColUserSortIndicatorDescending(並べ替え/降順)を設定
・UserColActionプロパティに$UserColActionSort(並べ替え/インジケータ表示)、$UserColActionSortNoIndicator(並べ替え/インジケータ非表示)を設定
Eventオブジェクトには以下の子オブジェクトが付加されています。
型 |
名前 |
説明 |
Number |
|
並べ替えされた列の列番号 |
より追加されました
使用例
Function OnAfterUserSort(e) {
MessageBox(str(e.Col) + "列目が並べ替えされました");
}
関連項目
ColUserSortIndicator、UserColActionプロパティ
BeforeUserSortイベント