Skip to main content

ColumnView.ColumnChanged Event

Fires when changing a column’s properties.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

[DXCategory("Property Changed")]
public event EventHandler ColumnChanged

Event Data

The ColumnChanged event's data class is EventArgs.

Remarks

The ColumnChanged event is raised when the properties affecting column data representation are changed. The column whose properties have changed is identified by the event’s sender parameter. The event is used internally by Views. Generally, you will have no need to handle it in your own application.

private void gridView1_ColumnChanged(object sender, EventArgs e) {
    GridColumn column = sender as GridColumn;
    MessageBox.Show("The " + column.Caption + " column has changed");
}

You may need to respond to sorting or grouping a View against specific column values. For this purpose, handle the ColumnView.EndSorting and ColumnView.EndGrouping events respectively.

See Also