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.
Validates and parses the input value and returns a valid object that can be the value of the field.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Overrides Function ValidateAndParseValue ( _
item As SPListItem, _
value As String _
) As Object
'Usage
Dim instance As SPFieldNumber
Dim item As SPListItem
Dim value As String
Dim returnValue As Object
returnValue = instance.ValidateAndParseValue(item, _
value)
public override Object ValidateAndParseValue(
SPListItem item,
string value
)
Parameters
item
Type: Microsoft.SharePoint.SPListItemAn SPListItem containing a field whose new value needs to be validated.
value
Type: System.StringA string with the value to be parsed and returned.
Return value
Type: System.Object
An object that can be assigned to the field as its value.
Remarks
This override converts the value to a double, validates it and returns it.