BaseGridColumn.FieldKeys property
Must-override. Gets or sets a collection of field keys associated with the column.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public MustOverride Property FieldKeys As IEnumerable(Of String)
Get
Set
'Usage
Dim instance As BaseGridColumn
Dim value As IEnumerable(Of String)
value = instance.FieldKeys
instance.FieldKeys = value
public abstract IEnumerable<string> FieldKeys { get; set; }
Property value
Type: System.Collections.Generic.IEnumerable<String>
A IEnumerable<T> of field keys associated with the column.
Remarks
A grid column can be associated with one or more fields. For example, a GridColumn object is associated with only one field, but a pivot column can be associated with more than one field.