Syntax
Public Function AccountInfoDouble(propertyID As ENUM_ACCOUNT_INFO_DOUBLE) As Double
Description
This function is used to return account summary information for selected account according to a given account property ID.
Parameters
Key | Description |
propertyID | The account summary information to get it value, Avalue of type ENUM_ACCOUNT_INFO_DOUBLE. |
Return value
Returns a double value of the corresponding account property, otherwise return -1, In order to get an error, call GetLastError() function.
Example
Sub Main() Dim x x= AccountInfoDouble(ACCOUNT_BALANCE) AlertMessage "Account Balance Result: " & x End Sub
See Also