'宣言 Public Event ColumnSorted As EventHandler(Of SortedColumnEventArgs)
public event EventHandler<SortedColumnEventArgs> ColumnSorted
イベント ハンドラが、このイベントに関連するデータを含む、SortedColumnEventArgs 型の引数を受け取りました。次の SortedColumnEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Column Infragistics.Controls.Grids.ColumnEventArgsから継承されます。 | このイベントがトリガーされる ColumnEventArgs.Column。 |
PreviousSortDirection | 前に適用された SortDirection を取得します。 |
Private Sub MyGrid_ColumnSorted(ByVal sender As System.Object, ByVal e As SortedColumnEventArgs) System.Diagnostics.Debug.WriteLine("Column sorted successfully") End Sub
private void MyGrid_ColumnSorted(object sender, SortedColumnEventArgs e) { System.Diagnostics.Debug.WriteLine("Column successfully sorted"); }