Condividi tramite


Metodo InkAnalyzer.SetStrokeType

Aggiornamento: novembre 2007

Modifica il tipo di tratto di un oggetto Stroke.

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

Sintassi

'Dichiarazione
Public Sub SetStrokeType ( _
    stroke As Stroke, _
    strokeType As StrokeType _
)
'Utilizzo
Dim instance As InkAnalyzer
Dim stroke As Stroke
Dim strokeType As StrokeType

instance.SetStrokeType(stroke, strokeType)
public void SetStrokeType(
    Stroke stroke,
    StrokeType strokeType
)
public:
void SetStrokeType(
    Stroke^ stroke, 
    StrokeType strokeType
)
public void SetStrokeType(
    Stroke stroke,
    StrokeType strokeType
)
public function SetStrokeType(
    stroke : Stroke, 
    strokeType : StrokeType
)

Parametri

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 ottenere il tipo assegnato attualmente a un tratto, chiamare GetStrokeType().

Esempi

In questo esempio viene assegnato il valore theStrokeType di StrokeType a ogni tratto presente nell'oggetto ContextNode (denominato theContextNode), associato all'oggetto InkAnalyzer (denominato theInkAnalyzer).

' Iterate through the strokes within the context node and update
' the stroke type of those strokes.
Dim theStroke As Stroke
For Each theStroke In theContextNode.Strokes
    theInkAnalyzer.SetStrokeType(theStroke, theStrokeType)
Next theStroke
// Iterate through the strokes within the context node and update
// the stroke type of those strokes.
foreach (Stroke theStroke in theContextNode.Strokes)
{
    theInkAnalyzer.SetStrokeType(theStroke, 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