Proprietà UnicodeRange.Length
Aggiornamento: novembre 2007
Ottiene o imposta il numero di caratteri successivi al carattere iniziale.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Sintassi
'Dichiarazione
Public Property Length As Integer
'Utilizzo
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)
Valore proprietà
Tipo: System.Int32
Numero di caratteri successivi al carattere iniziale.
Esempi
In questo esempio un metodo accetta un oggetto Recognizer e utilizza il metodo GetUnicodeRanges dell'oggetto passato per calcolare il numero totale di caratteri supportati.
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;
}
Piattaforme
Windows Vista
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0