Visual Components are implemented in FRE for Windows.
TextValidatorCommandEnum enumeration constants are used to denote actions for the misspelt words.
typedef enum {
TVC_None,
TVC_Ignore,
TVC_IgnoreAll,
TVC_Replace,
TVC_ReplaceAll,
TVC_Add
} TextValidatorCommandEnum;
Elements
| Name | Description |
|---|
| TVC\_None | No action. In this case, the error is displayed in Text Validator and the user of your application can check it. |
| TVC\_Ignore | Leaves the word unchanged. |
| TVC\_IgnoreAll | Leaves all such words in the text unchanged. |
| TVC\_Replace | Replaces the current word with the selected suggestion. |
| TVC\_ReplaceAll | Replaces all such words in the text with the selected suggestion. |
| TVC\_Add | Adds the word to dictionary. |
Used in
ITextValidatorEvents::OnValidationEvent