ListView.OnColumnReordered(ColumnReorderedEventArgs) Method

Definition

Raises the ColumnReordered event.

protected:
 virtual void OnColumnReordered(System::Windows::Forms::ColumnReorderedEventArgs ^ e);
protected virtual void OnColumnReordered (System.Windows.Forms.ColumnReorderedEventArgs e);
abstract member OnColumnReordered : System.Windows.Forms.ColumnReorderedEventArgs -> unit
override this.OnColumnReordered : System.Windows.Forms.ColumnReorderedEventArgs -> unit
Protected Overridable Sub OnColumnReordered (e As ColumnReorderedEventArgs)

Parameters

e
ColumnReorderedEventArgs

The ColumnReorderedEventArgs that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnColumnReordered method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding OnColumnReordered(ColumnReorderedEventArgs) in a derived class, be sure to call the base class's OnColumnReordered(ColumnReorderedEventArgs) method so that registered delegates receive the event.

Applies to