InkRecognitionStatus Enumeration
InkRecognitionStatus Enumeration |
Defines values that specify whether an error occurred during recognition and, if so, which error occurred.
Declaration
[C++]
typedef enum InkRecognitionStatus {
IRS_NoError = 0,
IRS_Interrupted = 1,
IRS_ProcessFailed = 2,
IRS_InkAddedFailed = 4,
IRS_SetAutoCompletionModeFailed = 8,
IRS_SetStrokesFailed = 16,
IRS_SetGuideFailed = 32,
IRS_SetFlagsFailed = 64,
IRS_SetFactoidFailed = 128,
IRS_SetPrefixSuffixFailed = 256,
IRS_SetWordListFailed = 512
} InkRecognitionStatus;
[Microsoft® Visual Basic® 6.0]
Enum InkRecognitionStatus
IRS_NoError = 0
IRS_Interrupted = 1
IRS_ProcessFailed = 2
IRS_InkAddedFailed = 4
IRS_SetAutoCompletionModeFailed = 8
IRS_SetStrokesFailed = 16
IRS_SetGuideFailed = 32
IRS_SetFlagsFailed = 64
IRS_SetFactoidFailed = 128
IRS_SetPrefixSuffixFailed = 256
IRS_SetWordListFailed = 512
End Enum
Members
The following tables list the enumeration values.
Name | Description |
---|---|
NoError | Specifies no error. |
Interrupted | Specifies that the recognition was interrupted by a call to StopBackgroundRecognition. |
ProcessFailed | Specifies that the ink recognition process failed. |
InkAddedFailed | Specifies that the ink could not be added. |
SetAutoCompletionModeFailed | Specifies that the character Autocomplete mode could not be set. |
SetStrokesFailed | Specifies that the strokes could not be set. |
SetGuideFailed | Specifies that the guide could not be set. |
SetFlagsFailed | Specifies that the flags could not be set. |
SetFactoidFailed | Specifies that the factoid could not be set. |
SetPrefixSuffixFailed | Specifies that the suffix or the prefix could not be set. |
SetWordListFailed | Specifies that the word list could not be set. |
Remarks
The SetGuideFailed, SetFlagsFailed, SetFactoidFailed, and SetPrefixSuffixFailed members are redundant because an error is also raised when the corresponding properties are set.