Condividi tramite


Metodo InkAnalyzer.GetStrokeType

Aggiornamento: novembre 2007

Restituisce il tipo di un oggetto Stroke.

Spazio dei nomi:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Sintassi

'Dichiarazione
Public Function GetStrokeType ( _
    stroke As Stroke _
) As StrokeType
'Utilizzo
Dim instance As InkAnalyzer
Dim stroke As Stroke
Dim returnValue As StrokeType

returnValue = instance.GetStrokeType(stroke)
public StrokeType GetStrokeType(
    Stroke stroke
)
public:
StrokeType GetStrokeType(
    Stroke^ stroke
)
public StrokeType GetStrokeType(
    Stroke stroke
)
public function GetStrokeType(
    stroke : Stroke
) : StrokeType

Parametri

Valore restituito

Tipo: System.Windows.Ink.StrokeType
Classificazione dell'oggetto stroke.

Note

Se il tipo del tratto è costituito dal valore Unspecified di System.Windows.Ink.StrokeType, l'oggetto InkAnalyzer classifica il tratto durante l'analisi dell'input penna. In caso contrario, InkAnalyzer utilizza il tipo impostato sul tratto.

Per specificare o modificare il tipo di tratto, utilizzare SetStrokeType() o SetStrokesType().

Esempi

In questo esempio viene definito un metodo, GetStrokeTypesInNode, per la restituzione di tutti i tipi di tratto in un oggetto ContextNode.

' Iterate through the strokes within the context node and add the
' stroke types to a collection.
Dim theStrokeTypes As New System.Collections.ArrayList()
Dim theStroke As Stroke
For Each theStroke In theContextNode.Strokes
    Dim theStrokeType As StrokeType = theInkAnalyzer.GetStrokeType(theStroke)
    If Not theStrokeTypes.Contains(theStrokeType) Then
        theStrokeTypes.Add(theStrokeType)
    End If
Next theStroke
// Iterate through the strokes within the context node and add the
// stroke types to a collection.
System.Collections.ArrayList theStrokeTypes =
    new System.Collections.ArrayList();
foreach (Stroke theStroke in theContextNode.Strokes)
{
    StrokeType theStrokeType =
        theInkAnalyzer.GetStrokeType(theStroke);
    if (!theStrokeTypes.Contains(theStrokeType))
    {
        theStrokeTypes.Add(theStrokeType);
    }
}

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

InkAnalyzer Classe

Membri InkAnalyzer

Spazio dei nomi System.Windows.Ink

System.Windows.Ink.StrokeType