InkRecognizerBaseCollection.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.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Function GetPriorityInkRecognizer ( _
languageId As Integer, _
capabilities As InkRecognizerCapabilities _
) As InkRecognizerBase
'Usage
Dim instance As InkRecognizerBaseCollection
Dim languageId As Integer
Dim capabilities As InkRecognizerCapabilities
Dim returnValue As InkRecognizerBase
returnValue = instance.GetPriorityInkRecognizer(languageId, _
capabilities)
public InkRecognizerBase GetPriorityInkRecognizer(
int languageId,
InkRecognizerCapabilities capabilities
)
public:
InkRecognizerBase^ GetPriorityInkRecognizer(
int languageId,
InkRecognizerCapabilities capabilities
)
public function GetPriorityInkRecognizer(
languageId : int,
capabilities : InkRecognizerCapabilities
) : InkRecognizerBase
Parameters
languageId
Type: System.Int32The locale identifier that the recognizer supports.
capabilities
Type: System.Windows.Ink.AnalysisCore.InkRecognizerCapabilitiesThe capabilities that the recognizer supports.
Return Value
Type: System.Windows.Ink.AnalysisCore.InkRecognizerBase
The first InkRecognizerBase 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 InkRecognizerBase from the InkRecognizerBaseCollection, 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 System.Windows.Ink.AnalysisCore.InkRecognizerBase = _
theInkRecognizers.GetPriorityInkRecognizer(&H11, _
System.Windows.Ink.AnalysisCore.InkRecognizerCapabilities.BoxedInput)
// Get the first recognizer from the InkRecognizerCollection that supports
// both region neutral Japanese and boxed input.
InkRecognizerBase theFirstJapaneseBoxedInputInkRecognizer =
theInkRecognizers.GetPriorityInkRecognizer(0x0011,
System.Windows.Ink.AnalysisCore.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
InkRecognizerBaseCollection Class
InkRecognizerBaseCollection Members