LanguageLetterSetEnum
LanguageLetterSetEnum enumeration constants are used to describe different letter sets of a simple language. Letter sets are the sets of characters that are allowed or disallowed in certain places inside the words in a specified language.
typedef enum {
LLS_Alphabet,
LLS_Prefixes,
LLS_Suffixes,
LLS_IgnorableLetters,
LLS_SubscriptAlphabet,
LLS_SuperscriptAlphabet
} LanguageLetterSetEnum;
Elements
Name | Description |
---|---|
LLS_Alphabet | This value denotes a letter set that includes the full alphabet of the language. |
LLS_Prefixes | This constant denotes a letter set that covers the punctuation marks that may be found immediately before words. Among these characters there may be ", (, { and so on. |
LLS_Suffixes | This constant denotes a letter set that covers the punctuation marks that may be found immediately after words. Among these characters there may be !, ", ), } and so on. |
LLS_IgnorableLetters | This value denotes a letter set that includes the characters that may be found inside a word, but are ignored during the internal spelling check. |
LLS_SubscriptAlphabet | This value denotes a letter set that includes the characters allowed inside the words of the language as subscripts. |
LLS_SuperscriptAlphabet | This value denotes a letter set that includes the characters allowed inside the words of the language as superscripts. |
Used in
8/15/2023 1:19:30 PM