MmcListView.OnSortCompleted Method (Int32, Boolean)
Called when a sort operation has been completed. The sort may have been initiated by the user or by the snap-in. The order in the ResultNodes property reflects the new order.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
protected virtual void OnSortCompleted(
int columnIndex,
bool descending
)
protected:
virtual void OnSortCompleted(
int columnIndex,
bool descending
)
abstract OnSortCompleted :
columnIndex:int *
descending:bool -> unit
override OnSortCompleted :
columnIndex:int *
descending:bool -> unit
Protected Overridable Sub OnSortCompleted (
columnIndex As Integer,
descending As Boolean
)
Parameters
columnIndex
Type: System.Int32The index of the column being sorted.
descending
Type: System.BooleanA flag that is true when the order is descending; false otherwise.
See Also
MmcListView Class
Microsoft.ManagementConsole Namespace
Return to top