Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnView.ColumnChanged Event

Fires when changing a column’s properties.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v24.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