Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Parses the specified string to a formatted double value and sets it as this field's value for the specified item.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Overrides Sub ParseAndSetValue ( _
item As SPListItem, _
value As String _
)
'Usage
Dim instance As SPFieldNumber
Dim item As SPListItem
Dim value As String
instance.ParseAndSetValue(item, value)
public override void ParseAndSetValue(
SPListItem item,
string value
)
Parameters
item
Type: Microsoft.SharePoint.SPListItemThe list item for which to set the field value.
value
Type: System.StringThe string value of this currency field.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | The item parameter is null. |
| ArgumentOutOfRangeException | The double value is less than the value of MinimumValue or greater than the value of MaximumValue. |