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!

Char.IsTitleCase

Determines whether the specified character is a title case character.

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

Parameters

c
The character to examine.

Return Value

true if the character is a title case character, otherwise false.

Remarks

A title case character is a concept that applies to only 4-characters in the Unicode specification. This has to do with the mapping of some Cyrillic/Serbian characters of the Latin alphabet. (See CultureInfo

.) For example, the Cyrillic character LJ looks just like 'L' and 'J' in the Latin alphabet. However, when used in a book title, the capitalized form is 'Lj', not 'LJ'.

The title case characters are:

\u01C5 Dz with Caron.

\u01C8 Lj

\u01CB Nj

\u01F2 Dz

See Also

Char Structure | Char Members | System Namespace | Boolean