'Declaration Public Function TryParse( _ ByVal editText As String, _ ByRef parsedResult As Object _ ) As Boolean
'Usage Dim instance As WinNumericTextBox Dim editText As String Dim parsedResult As Object Dim value As Boolean value = instance.TryParse(editText, parsedResult)
public bool TryParse( string editText, out object parsedResult )
Parameters
- editText
- A string containing the numeric value to parse.
- parsedResult
- The numeric equivalent to the string contained in editText. If editText is empty, NullValue is returned.
Return Value
true if editText was successfully parsed; false otherwise.