Condividi tramite


Proprietà Strokes.Count

Aggiornamento: novembre 2007

Ottiene il numero di oggetti Stroke contenuti nell'insieme Strokes.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property Count As Integer
'Utilizzo
Dim instance As Strokes
Dim value As Integer

value = instance.Count
public int Count { get; }
public:
virtual property int Count {
    int get () sealed;
}
/** @property */
public final int get_Count()
public final function get Count () : int

Valore proprietà

Tipo: System.Int32
Numero di oggetti Stroke contenuti nell'insieme Strokes.

Implementa

ICollection.Count

Esempi

In questo esempio si ottiene il numero di oggetti Stroke contenuto all'interno di un insieme Strokes e viene aggiornato il testo dell'etichetta con quel conteggio.

' Access to the Strokes property returns a copy of the Strokes object
' This copy must be implicitly (via using statement) or explicitly
' disposed of in order to avoid a memory leak
Using S As Strokes = mInkOverlay.Ink.Strokes
    Dim sCount As Integer = S.Count
    labelNumStrokes.Text = sCount.ToString()
End Using
// Access to the Strokes property returns a copy of the Strokes object.
// This copy must be implicitly (via using statement) or explicitly
// disposed of in order to avoid a memory leak.
using (Strokes S = mInkOverlay.Ink.Strokes)
{
    int sCount = S.Count;
    labelNumStrokes.Text = sCount.ToString();
}

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

Vedere anche

Riferimenti

Strokes Classe

Membri Strokes

Spazio dei nomi Microsoft.Ink

Stroke

Altre risorse

Interfaccia System.Collections.ICollection