ISProfile.FloatToStr

Description

This function converts float value to string.

Syntax

object.FloatToStr(aValue)

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
aValue In, Required
Double
The float value

Return Value

string

Returns string presentation of the float value.

Example

Display the string presentation of the float value.

Dim a
Dim Str

a = 3.14159265
Str = Profile.FloatToStr(a)
Profile.MsgBox(Str)
Note:

Version information

Added in v7.8.0