Sorting event handler.

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

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
)
F#
type SortingEventHandler = 
    delegate of 
        direction : SortDirection * 
        sortExpression : string * 
        e : CancelEventArgs -> unit

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