Strokes.Count-Eigenschaft
Ruft die Anzahl der Stroke-Objekte ab, die in der Strokes-Auflistung enthalten sind.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public ReadOnly Property Count As Integer
'Usage
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
Eigenschaftenwert
Typ: System.Int32
Die Anzahl der Stroke-Objekte, die in der Strokes-Auflistung enthalten sind.
Implementiert
Beispiele
In diesem Beispiel wird die Anzahl von Stroke-Objekten abgerufen, die in einer Strokes-Auflistung enthalten sind, und das Textfeld mit dieser Zahl aktualisiert.
' 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();
}
Plattformen
Windows Vista
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0