共用方式為


InkRecognizer.GetUnicodeRanges 方法

傳回表示支援之 Unicode 字元範圍的 CharacterRanges 陣列。

命名空間:  Microsoft.Ink
組件:  Microsoft.Ink.Analysis (在 Microsoft.Ink.Analysis.dll 中)

語法

'宣告
Public Function GetUnicodeRanges As UnicodeCharacterRangeCollection
'用途
Dim instance As InkRecognizer
Dim returnValue As UnicodeCharacterRangeCollection

returnValue = instance.GetUnicodeRanges()
public UnicodeCharacterRangeCollection GetUnicodeRanges()
public:
UnicodeCharacterRangeCollection^ GetUnicodeRanges()
public UnicodeCharacterRangeCollection GetUnicodeRanges()
public function GetUnicodeRanges() : UnicodeCharacterRangeCollection

傳回值

型別:Microsoft.Ink.UnicodeCharacterRangeCollection
表示支援之 Unicode 字元範圍的 CharacterRanges 陣列。

範例

在這個範例中,方法會接受 InkRecognizer 物件,而且會使用所傳入物件的 GetUnicodeRanges 方法,計算支援的字元總數。

Private Function SupportedUnicodeCharCount(ByVal pInkRecognizer As InkRecognizer) As Integer
    Dim result As Integer = 0
    Dim UCRC As UnicodeCharacterRangeCollection = pInkRecognizer.GetUnicodeRanges()
    For Each UCR As UnicodeCharacterRange In UCRC
        result += UCR.Length
    Next
    Return result
End Function
private int SupportedUnicodeCharCount(InkRecognizer pInkRecognizer)
{
    int result = 0;
    UnicodeCharacterRangeCollection UCRC = pInkRecognizer.GetUnicodeRanges();
    foreach (UnicodeCharacterRange UCR in UCRC)
    {
        result += UCR.Length;
    }
    return result;

}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

InkRecognizer 類別

InkRecognizer 成員

Microsoft.Ink 命名空間