다음을 통해 공유


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(Of IEnumerable(Of Object), SliceUpdate)
    Get
    Set
'Usage
Dim instance As GridSerializer
Dim value As Func(Of IEnumerable(Of Object), SliceUpdate)

value = instance.PostSliceFieldAppender

instance.PostSliceFieldAppender = value
public Func<IEnumerable<Object>, SliceUpdate> PostSliceFieldAppender { get; set; }

Property Value

Type: System.Func<IEnumerable<Object>, SliceUpdate>
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