Partager via


InkAnalyzer.SetStrokeType, méthode

Mise à jour : November 2007

Modifie le type de trait d'un Stroke.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)

Syntaxe

'Déclaration
Public Sub SetStrokeType ( _
    stroke As Stroke, _
    strokeType As StrokeType _
)
'Utilisation
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
)

Paramètres

Notes

Si le type du trait correspond à la valeur Unspecified du Microsoft.Ink.StrokeType, le InkAnalyzer classifie le trait pendant l'analyse d'entrée manuscrite. Sinon, InkAnalyzer utilise le type défini pour le trait.

Pour obtenir le type actuellement assigné à un trait, appelez la méthode InkAnalyzer.GetStrokeType.

Exemples

Cet exemple assigne la valeur StrokeType, theStrokeType, à tous les traits du ContextNode, theContextNode, associé au InkAnalyzer, theInkAnalyzer.

' Iterate through the strokes within the context node and update
' the stroke type of those strokes.
Dim theStroke As Microsoft.Ink.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 (Microsoft.Ink.Stroke theStroke in theContextNode.Strokes)
{
    theInkAnalyzer.SetStrokeType(theStroke, theStrokeType);
}

Plateformes

Windows Vista

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

InkAnalyzer, classe

Membres InkAnalyzer

Microsoft.Ink, espace de noms

Microsoft.Ink.StrokeType