SPFieldCurrency.ParseValue method

Parses a potential value of the field and returns an object that can be assigned as the value of the field.

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

Syntax

'Declaration
Public Overrides Function ParseValue ( _
    item As SPListItem, _
    value As String _
) As Object
'Usage
Dim instance As SPFieldCurrency
Dim item As SPListItem
Dim value As String
Dim returnValue As Object

returnValue = instance.ParseValue(item, _
    value)
public override Object ParseValue(
    SPListItem item,
    string value
)

Parameters

  • value
    Type: System.String

    A string with the value to be parsed and returned.

Return value

Type: System.Object
A parsed version of value.

Remarks

This implementation converts value to a double and returns it formatted for the current culture's currency. (If value is an empty string or a null reference (Nothing in Visual Basic), a null reference (Nothing in Visual Basic) is returned.)

See also

Reference

SPFieldCurrency class

SPFieldCurrency members

Microsoft.SharePoint namespace