Classifies a character as whitespace, line terminator, part of an identifier, or other.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public enum CharacterClass
Public Enumeration CharacterClass
public enum class CharacterClass
Members
Member | Description |
---|---|
Other |
The character is not whitespace, line terminator or part of an identifier.
|
Whitespace |
The character is whitespace (but not line terminator).
|
IdentifierPart |
The character can be part of an identifier (Letter, digit or underscore).
|
LineTerminator |
The character is line terminator (\r or \n).
|
CombiningMark |
The character is a unicode combining mark that modifies the previous character.
Corresponds to the Unicode designations "Mn", "Mc" and "Me".
|
Assembly: ICSharpCode.AvalonEdit (Module: ICSharpCode.AvalonEdit.dll) Version: 5.0.0.4238