Function CSPString::SetLocale()
Description:
Sets the locale that affects string manipulation (collation, code page etc.)
 |
Prototype:
static void SetLocale(const CSPString& strLocale);
Arguments:
- const CSPString& strLocale [IN]
The locale name.
Return value:
No return value (void).
Remarks:
The locale identifier is the language name chosen locale.
Examples:
CSPString::SetLocale( "English" );
|
|