Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Returns the character associated with the specified character code.
Namespace: Microsoft.VisualBasic
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
Syntax
'Declaration
Public Shared Function ChrW ( _
CharCode As Integer _
) As Char
public static char ChrW(
int CharCode
)
public:
static wchar_t ChrW(
int CharCode
)
static member ChrW :
CharCode:int -> char
public static function ChrW(
CharCode : int
) : char
Parameters
- CharCode
Type: System. . :: . .Int32
Required. An Integer expression representing the code point, or character code, for the character.
Return Value
Type: System. . :: . .Char
Returns the character associated with the specified character code.
Exceptions
Exception | Condition |
---|---|
ArgumentException | CharCode < -32768 or > 65535 for ChrW. |
Remarks
The asymmetric range accepted for CharCode compensates for the storage differences between the Short and the Integer. For example, -29183 is a Short but +36353 is an Integer. This also facilitates compatibility with Visual Basic 6.0.
Chr uses the Encoding class in the System.Text namespace to determine if the current thread is using a single-byte character set (SBCS) or a double-byte character set (DBCS). It then takes CharCode as a code point in the appropriate set. The range can be 0 through 255 for SBCS characters and -32768 through 65535 for DBCS characters.
The returned value depends on the code page for the current thread, which is contained in the ANSICodePage property of the TextInfo class in the System.Globalization namespace. You can obtain ANSICodePage by specifying System.Globalization.CultureInfo.CurrentCulture.TextInfo.ANSICodePage.
ChrW takes CharCode as a Unicode code point. The range is independent of the culture and code page settings for the current thread. Values from -32768 through -1 are treated the same as values in the range +32768 through +65535.
Numbers from 0 through 31 are the same as standard nonprintable ASCII codes. For example, Chr(10) returns a line feed character.
Note
The ChrB function in earlier versions of Visual Basic returns a single byte. It is used primarily for converting strings in double-byte character set (DBCS) applications. All strings in Visual Basic and the .NET Framework are in Unicode, and ChrB is no longer supported.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.