RecognitionResult Property

RecognitionResult Property

Gets the IInkRecognitionResult object of the InkStrokes collection.

Declaration

[C++]

[C++]

[propget] HRESULT get_RecognitionResult ([out, retval]
    InkRecognitionResult** RecognitionResult
);

      

[Microsoft® Visual Basic® 6.0]

[Visual Basic]

Public Property Get RecognitionResult() As IInkRecognitionResult

      

Property Value

InkRecognitionResult The IInkRecognitionResult object of the InkStrokes collection.

This property is read-only.

Return Value

HRESULT value Description
S_OK Success.
E_POINTER The parameter pointer was NULL or invalid.
E_UNEXPECTED Unexpected parameter or property type.
E_INK_EXCEPTION An exception occurred inside the method.

Remarks

The value of this property is NULL (Nothing in Visual Basic 6.0) if recognition has not been done or if the results were not persisted.

Example

[Visual Basic 6.0]

This Visual Basic 6.0 example returns the recognition result of a InkStrokes collection.

[Visual Basic]

Dim theRecognitionResult As IInkRecognitionResult
Set theRecognitionResult = theStrokes.RecognitionResult

      

Applies To