Freigeben über


InkAnalyzer.SetStrokeType-Methode

Ändert den Strichtyp eines Stroke.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public Sub SetStrokeType ( _
    stroke As Stroke, _
    strokeType As StrokeType _
)
'Usage
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
)

Parameter

Hinweise

Wenn der Typ des Strichs der Microsoft.Ink.StrokeType-Wert Unspecified ist, klassifiziert der InkAnalyzer den Strich während der Freihandanalyse. Andernfalls verwendet InkAnalyzer den für den Strich festgelegten Typ.

Rufen Sie InkAnalyzer.GetStrokeType auf, um den einem Strich zugewiesenen Typ abzurufen.

Beispiele

In diesem Beispiel wird der StrokeType-Wert, theStrokeType, allen Strichen im ContextNode, theContextNode, zugewiesen, der dem InkAnalyzer, theInkAnalyzer, zugeordnet ist.

' 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);
}

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

Siehe auch

Referenz

InkAnalyzer-Klasse

InkAnalyzer-Member

Microsoft.Ink-Namespace

Microsoft.Ink.StrokeType