GridSerializer.PostSliceFieldAppender property

Gets or sets a delegate that will be called after slicing the data. It provides the opportunity to add more fields to the grid after it is known which records will be present.

Namespace:  Microsoft.SharePoint.JSGrid
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Property PostSliceFieldAppender As Func
    Get
    Set
'Usage
Dim instance As GridSerializer
Dim value As Func

value = instance.PostSliceFieldAppender

instance.PostSliceFieldAppender = value
public Func PostSliceFieldAppender { get; set; }

Property value

Type: System.Func<T, TResult>
Func<T, TResult> is a delegate for adding more fields to the grid after slicing.

Remarks

This is only useful for columns that are expensive to get and cannot be grouped sorted.

See also

Reference

GridSerializer class

GridSerializer members

Microsoft.SharePoint.JSGrid namespace