Returns the conversion operator for a given currency.
<HsvCurrencies>.GetCurrencyTranslationOperator(lCurrencyID)
String. Returns the conversion operator.
The following function takes a currency’s label and returns its conversion operator. The currency’s ID is obtained with GetCurrencyID.
Function getCurrencyOp(sCurr As String) As String Dim cCurrencies As HsvCurrencies, lCurrID As Long 'g_cMetadata is a previously set HsvMetadata object reference Set cCurrencies = g_cMetadata.Currencies lCurrID = cCurrencies.GetCurrencyID(sCurr) getCurrencyOp = cCurrencies.GetCurrencyTranslationOperator(lCurrID) End Function