This function converts float value to string.
object.FloatToStr(aValue)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
|
aValue |
In, Required | Double |
The float value |
string
Display the string presentation of the float value.
Dim a
Dim Str
a = 3.14159265
Str = Profile.FloatToStr(a)
Profile.MsgBox(Str)