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!

CharacterInfo.IsControl

Determines whether the specified character is a control code.

[Visual Basic]
Public Shared Function IsControl( _
   ByVal ch As Char _
) As Boolean
[C#]
public static bool IsControl(
   char ch
);
[C++]
public: static bool IsControl(
   __wchar_t ch
);
[JScript]
public static function IsControl(
   ch : Char
) : Boolean;

Parameters

ch
The specified character.

Return Value

true if c is a control code; otherwise, false.

Remarks

The first 32 characters in the ASCII character set are control codes for communications and printers.

See Also

CharacterInfo Class | CharacterInfo Members | System.Globalization Namespace