SPFieldLookup.GetFieldValue method

Converts the specified field value into a field type value.

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

Syntax

'Declaration
Public Overrides Function GetFieldValue ( _
    value As String _
) As Object
'Usage
Dim instance As SPFieldLookup
Dim value As String
Dim returnValue As Object

returnValue = instance.GetFieldValue(value)
public override Object GetFieldValue(
    string value
)

Parameters

  • value
    Type: System.String

    The field value to convert into a field type value.

Return value

Type: System.Object
The field type value.

Remarks

This method returns null if value is null or empty.

This method returns an SPFieldLookupValueCollection type value if the AllowMultipleValues property is set to true; otherwise, it returns an SPFieldLookupValue type value.

See also

Reference

SPFieldLookup class

SPFieldLookup members

Microsoft.SharePoint namespace

Other resources

Custom Field Value Classes