Determines whether a character is spell-checkable.

Namespace:  C1.Silverlight.SpellChecker
Assembly:  C1.Silverlight.SpellChecker (in C1.Silverlight.SpellChecker.dll)

Syntax

C#
public static bool IsWordCharacter(
	char c
)
Visual Basic
Public Shared Function IsWordCharacter ( _
	c As Char _
) As Boolean

Parameters

c
Type: System..::..Char
Character to test.

Return Value

True if the character is spell-checkable, false otherwise.

Remarks

This method returns true for all letter and digit characters, underscores, and single quotes.

See Also