Sorting event handler.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 4.5.3057.35 (4.5.3057.35)

Syntax

C#
public delegate void SortingEventHandler(
	SortDirection direction,
	string sortExpression,
	CancelEventArgs e
)
Visual Basic
Public Delegate Sub SortingEventHandler ( _
	direction As SortDirection, _
	sortExpression As String, _
	e As CancelEventArgs _
)
Visual C++
public delegate void SortingEventHandler(
	SortDirection direction, 
	String^ sortExpression, 
	CancelEventArgs^ e
)

Parameters

direction
Type: System.Web.UI.WebControls..::..SortDirection
Sort direction
sortExpression
Type: System..::..String
Sort expression
e
Type: System.ComponentModel..::..CancelEventArgs
Cancel event arguments

See Also