Share via


InkEdit.Recognize Method

Causes the ink on the InkEdit control to be recognized.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Sub Recognize
'Usage
Dim instance As InkEdit

instance.Recognize()
public void Recognize()
public:
void Recognize()
public function Recognize()

Remarks

If you set the RecoTimeout property to zero, you prevent ink from being replaced by the recognized text. In this circumstance, to replace ink with the recognized text, call the Recognize method.

Examples

In this example, the Recognize method ic called if the RecoTimeout property is set to zero.

If (0 = mInkEdit.RecoTimeout) Then
    mInkEdit.Recognize()
End If
if (0 == mInkEdit.RecoTimeout)
{
    mInkEdit.Recognize();
}

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InkEdit Class

InkEdit Members

Microsoft.Ink Namespace

Recognizer

Other Resources

Confidence Property [About Recognition]