IsFormattedAsNumeric Method
In This Topic
Determines whether the specified numeric value is formatted as numeric.
Syntax
'Declaration
Function IsFormattedAsNumeric( _
ByVal As Double _
) As Boolean
'Usage
Dim instance As IFormatter
Dim number As Double
Dim value As Boolean
value = instance.IsFormattedAsNumeric(number)
bool IsFormattedAsNumeric(
double
)
Parameters
- number
- A double value indicates the number.
Return Value
true
if the specified numeric value is formatted as numeric; otherwise, false
.
See Also