SPFieldUser.GetFieldValueForClientRender method
Converts the field type value into object for use in client Display, Edit and New item forms.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Overrides Function GetFieldValueForClientRender ( _
item As SPItem, _
mode As SPControlMode _
) As Object
'Usage
Dim instance As SPFieldUser
Dim item As SPItem
Dim mode As SPControlMode
Dim returnValue As Object
returnValue = instance.GetFieldValueForClientRender(item, _
mode)
public override Object GetFieldValueForClientRender(
SPItem item,
SPControlMode mode
)
Parameters
item
Type: Microsoft.SharePoint.SPItemAn object containing a value of for this type of field.
mode
Type: Microsoft.SharePoint.WebControls.SPControlModeA value that specifies whether the returned object should be suitable for the Display form, or Edit form, or New form.
Return value
Type: System.Object
An object containing a representation of the field value used for client rendering in the form designated by mode.
Remarks
This override returns the default value for the field as a string in New mode and the current value of the field as a string in Display mode. In Edit mode it returns a List<T> of PickerEntity objects.