NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

StrConv Constants

When using the StrConv function, the following constants can be used in your code in place of the actual values:

Constant Value Description
UpperCase 1 Converts the string to uppercase characters.
LowerCase 2 Converts the string to lowercase characters.
ProperCase 3 Converts the first letter of every word in string to uppercase.
Wide 4 Converts narrow (single-byte) characters in string to wide (double-byte) characters. Applies to Asian locales.
Narrow 8 Converts wide (double-byte) characters in string to narrow (single-byte) characters. Applies to Asian locales.
Katakana 16 Converts Hiragana characters in string to Katakana characters. Applies to Japan only.
Hiragana 32 Converts Katakana characters in string to Hiragana characters. Applies to Japan only.
Unicode 64 Converts the string to Unicode using the default code page of the system.
FromUnicode 128 Converts the string from Unicode to the default code page of the system.

See Also

StrConv Function | Visual Basic Constants