RecognizerContext.GetEnabledUnicodeRanges 方法

返回识别器支持的 UnicodeRange 的数组。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Function GetEnabledUnicodeRanges As UnicodeRange()
用法
Dim instance As RecognizerContext
Dim returnValue As UnicodeRange()

returnValue = instance.GetEnabledUnicodeRanges()
public UnicodeRange[] GetEnabledUnicodeRanges()
public:
array<UnicodeRange>^ GetEnabledUnicodeRanges()
public UnicodeRange[] GetEnabledUnicodeRanges()
public function GetEnabledUnicodeRanges() : UnicodeRange[]

返回值

类型:array<Microsoft.Ink.UnicodeRange[]
识别器支持的 UnicodeRange 的数组。

备注

此方法是 Microsoft.Ink 6.0 版程序集中的新方法。

示例

此示例中的方法接受一个 RecognizerContext 对象,并使用传入的对象的 GetEnabledUnicodeRanges 方法计算启用的总字符数。

Private Function SupportedUnicodeCharCount(ByVal pRecognizerContext As RecognizerContext) As Integer
    Dim result As Integer = 0
    Dim UCRA() As UnicodeRange = pRecognizerContext.GetEnabledUnicodeRanges()
    For Each UCR As UnicodeRange In UCRA
        result += UCR.Length
    Next
    Return result
End Function
private int SupportedUnicodeCharCount(RecognizerContext pRecognizerContext)
{
    int result = 0;
    UnicodeRange[] UCRA = pRecognizerContext.GetEnabledUnicodeRanges();
    foreach (UnicodeRange UCR in UCRA)
    {
        result += UCR.Length;
    }
    return result;

}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

RecognizerContext 类

RecognizerContext 成员

Microsoft.Ink 命名空间