ValueComparer Delegate
This is the default implementation used by grid fields with no custom comparer delegate set.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Delegate Function ValueComparer ( _
x As Object, _
y As Object, _
strict As Boolean _
) As Integer
'Usage
Dim instance As New ValueComparer(AddressOf HandlerMethod)
public delegate int ValueComparer(
Object x,
Object y,
bool strict
)
Parameters
- x
Type: System.Object
- y
Type: System.Object
- strict
Type: System.Boolean
Return Value
Type: System.Int32
Remarks
It will only be used to compare two objects.