Syntax
Public Function AccountInfoString(ByVal property_id As ENUM_ACCOUNT_INFO_STRING) As String
Description
This function used to return the value of type string thatcorresponding at account property for
Parameters
Parameter | Description |
property_id | Account property that wants to get, a value of typeENUM_ACCOUNT_INFO_STRING |
Return value
Returns the result as Stringbase on ENUM_ACCOUNT_INFO_STRING.
Sample
Public Sub main() Dim property_id As Integer property_id= VTLGeneral.ENUM_ACCOUNTINFO_STRING.ACCOUNT_FIRST_NAME GUI.MsgDialog(ClientCode.AccountInfoString(property_id))End Sub
See Also