Object2Float Function | |
Convert an object containing a numeric value to a FLOAT
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION Object2Float(
oValue AS Object
) AS FLOAT
public static Float Object2Float(
Object oValue
)
Request Example
View SourceParameters
- oValue
- Type: Object
Object containing the numeric value to convert.
Return Value
Type:
FloatThe value in the form of a float.
Exceptions Exception | Condition |
---|
InvalidCastException | Thrown when the parameter oValue cannot be converted to a FLOAT. |
See Also