This documentation is archived and is not being maintained.
VbStrConv Enumeration
Visual Studio 2010
Indicates which type of conversion to perform when calling the StrConv function.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.VisualBasicAssembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
| Member name | Description | |
|---|---|---|
| None | Performs no conversion. | |
| Uppercase | Converts the string to uppercase characters. This member is equivalent to the Visual Basic constant vbUpperCase. | |
| Lowercase | Converts the string to lowercase characters. This member is equivalent to the Visual Basic constant vbLowerCase. | |
| ProperCase | Converts the first letter of every word in the string to uppercase. This member is equivalent to the Visual Basic constant vbProperCase. | |
| Wide | Converts narrow (single-byte) characters in the string to wide (double-byte) characters. Applies to Asian locales. This member is equivalent to the Visual Basic constant vbWide. | |
| Narrow | Converts wide (double-byte) characters in the string to narrow (single-byte) characters. Applies to Asian locales. This member is equivalent to the Visual Basic constant vbNarrow. | |
| Katakana | Converts Hiragana characters in the string to Katakana characters. Applies to Japanese locale only. This member is equivalent to the Visual Basic constant vbKatakana. | |
| Hiragana | Converts Katakana characters in the string to Hiragana characters. Applies to Japanese locale only. This member is equivalent to the Visual Basic constant vbHiragana. | |
| SimplifiedChinese | Converts the string to Simplified Chinese characters. This member is equivalent to the Visual Basic constant vbSimplifiedChinese. | |
| TraditionalChinese | Converts the string to Traditional Chinese characters. This member is equivalent to the Visual Basic constant vbTraditionalChinese. | |
| LinguisticCasing | Converts the string from file system rules for casing to linguistic rules. This member is equivalent to the Visual Basic constant vbLinguisticCasing. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: