PutInternationalString method
- Last UpdatedJul 23, 2024
- 1 minute read
Adds the internationalized string of a specific locale to the existing internationalized strings. Held by the MxValue. If the locale is already supported by the internationalized string then the string passed in overwrites the existing string for that locale.
Class
IMxValue
Syntax
[C#]
void PutInternationalString(
int locale,
string InternationalizedString
);
[Visual C++]
HRESULT PutInternationalString(
[in] long locale,
[in] BSTR internationalizedString
);
Parameters
locale,
The locale of the internationalized string that is being set into the MxValue.
internationalizedString,
The internationalized string that is to be set into the MxValue.
Returns
S_OK - operation succeeded.
E_FAIL - operation failed.