windowsforms-devexpress-dot-xtratreelist-dot-treelist-b282df70.md
Fires when a column is moved, hidden, or shown.
Namespace : DevExpress.XtraTreeList
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[DXCategory("Behavior")]
public event EventHandler ColumnPositionChanged
<DXCategory("Behavior")>
Public Event ColumnPositionChanged As EventHandler
The ColumnPositionChanged event's data class is EventArgs.
The ColumnPositionChanged event allows you to respond to changing the column position in the TreeList. This event fires each time when:
The sender parameter, passed to the event handler, returns the TreeListColumn object that represents the column being moved. You can read the TreeListColumn.VisibleIndex property to get the new position of the column. If the column is hidden, this property returns -1.
See Also