UnicodeRange.Length 属性

获取或设置起始字符后的字符数。

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

语法

声明
Public Property Length As Integer
用法
Dim instance As UnicodeRange
Dim value As Integer

value = instance.Length

instance.Length = value
public int Length { get; set; }
public:
property int Length {
    int get ();
    void set (int value);
}
/** @property */
public int get_Length()
/** @property */
public  void set_Length(int value)
public function get Length () : int
public function set Length (value : int)

属性值

类型:System.Int32
起始字符后的字符数。

示例

此示例中的方法接受一个 Recognizer 对象,并使用传入的对象的 GetUnicodeRanges 方法计算支持的总字符数。

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

}

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

UnicodeRange 结构

UnicodeRange 成员

Microsoft.Ink 命名空间