GridField.MultiValue Property
Gets or sets a setting indicating whether this is a multi-value field.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Property MultiValue As Boolean
Get
Set
'Usage
Dim instance As GridField
Dim value As Boolean
value = instance.MultiValue
instance.MultiValue = value
public bool MultiValue { get; set; }
Property Value
Type: System.Boolean
A Boolean specifying that this field may contain multi-values.
Remarks
/*The Localizer determines how we render the underlying data on screen */
gf.Localizer = (ValueLocalizer)delegate(DataRow row, object toConvert);
' The Localizer determines how we render the underlying data on screen
gf.Localizer = Function(row As DataRow, toConvert As Object) As ValueLocalizer