UnicodeRange.StartingCharacter 属性

获取或设置起始字符。

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

语法

声明
Public Property StartingCharacter As Char
用法
Dim instance As UnicodeRange
Dim value As Char

value = instance.StartingCharacter

instance.StartingCharacter = value
public char StartingCharacter { get; set; }
public:
property wchar_t StartingCharacter {
    wchar_t get ();
    void set (wchar_t value);
}
/** @property */
public char get_StartingCharacter()
/** @property */
public  void set_StartingCharacter(char value)
public function get StartingCharacter () : char
public function set StartingCharacter (value : char)

属性值

类型:System.Char
起始字符。

示例

此示例中的方法接受一个 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 命名空间