Share via


InkRecognizerCollection.GetPriorityInkRecognizer Method (Int32, InkRecognizerCapabilities)

Gets the first recognizer in the collection that supports both the specified capabilities and input from the specified locale.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Syntax

'Declaration
Public Function GetPriorityInkRecognizer ( _
    languageId As Integer, _
    capabilities As InkRecognizerCapabilities _
) As InkRecognizer
'Usage
Dim instance As InkRecognizerCollection 
Dim languageId As Integer 
Dim capabilities As InkRecognizerCapabilities 
Dim returnValue As InkRecognizer 

returnValue = instance.GetPriorityInkRecognizer(languageId, _
    capabilities)
public InkRecognizer GetPriorityInkRecognizer(
    int languageId,
    InkRecognizerCapabilities capabilities
)
public:
InkRecognizer^ GetPriorityInkRecognizer(
    int languageId, 
    InkRecognizerCapabilities capabilities
)
public function GetPriorityInkRecognizer(
    languageId : int, 
    capabilities : InkRecognizerCapabilities
) : InkRecognizer

Parameters

  • languageId
    Type: System.Int32

    The locale identifier that the recognizer supports.

Return Value

Type: System.Windows.Ink.InkRecognizer
The first InkRecognizer in the collection that supports both the specified InkRecognizerCapabilities and input from the specified locale, or nulla null reference (Nothing in Visual Basic) reference (Nothing in Visual Basic) if the collection contains no such recognizer.

Examples

The following example gets the first InkRecognizer from the InkRecognizerCollection, theInkRecognizers, that supports both region-neutral Japanese input and boxed input.

' Get the first recognizer from the InkRecognizerCollection that supports 
' both region neutral Japanese and boxed input. 
Dim theFirstJapaneseBoxedInputInkRecognizer As InkRecognizer = _
    theInkRecognizers.GetPriorityInkRecognizer(&H11, InkRecognizerCapabilities.BoxedInput)
// Get the first recognizer from the InkRecognizerCollection that supports 
// both region neutral Japanese and boxed input.
InkRecognizer theFirstJapaneseBoxedInputInkRecognizer =
    theInkRecognizers.GetPriorityInkRecognizer(0x0011,
        InkRecognizerCapabilities.BoxedInput);

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

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

InkRecognizerCollection Class

InkRecognizerCollection Members

GetPriorityInkRecognizer Overload

System.Windows.Ink Namespace