windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnview-bc7b0fc8.md
Fires in response to changing column focus.
Namespace : DevExpress.XtraGrid.Views.Base
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DXCategory("Property Changed")]
public event FocusedColumnChangedEventHandler FocusedColumnChanged
<DXCategory("Property Changed")>
Public Event FocusedColumnChanged As FocusedColumnChangedEventHandler
The FocusedColumnChanged event's data class is FocusedColumnChangedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| FocusedColumn | Gets the currently focused column. |
| PrevFocusedColumn | Gets the previously focused column. |
The event is raised when end-users move focus from column to column or when changing the ColumnView.FocusedColumn property value via code. The following cases can take place:
See Also