Compartir a través de


InkAnalyzer.SetStrokeType (Método)

Actualización: noviembre 2007

Cambia el tipo de trazo de un objeto Stroke.

Espacio de nombres:  Microsoft.Ink
Ensamblado:  Microsoft.Ink.Analysis (en Microsoft.Ink.Analysis.dll)

Sintaxis

'Declaración
Public Sub SetStrokeType ( _
    stroke As Stroke, _
    strokeType As StrokeType _
)
'Uso
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
)

Parámetros

Comentarios

Si el tipo del trazo es el valor Unspecified del objeto Microsoft.Ink.StrokeType, el objeto InkAnalyzer clasifica el trazo durante el análisis de la entrada manuscrita. En caso contrario, el objeto InkAnalyzer utiliza el tipo establecido en el trazo.

Para obtener el tipo asignado actualmente a un trazo, llame al método InkAnalyzer.GetStrokeType.

Ejemplos

En este ejemplo se asigna el valor StrokeType, theStrokeType, a todos los trazos del objeto ContextNode, theContextNode, asociado al objeto 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);
}

Plataformas

Windows Vista

.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.

Información de versión

.NET Framework

Compatible con: 3.0

Vea también

Referencia

InkAnalyzer (Clase)

InkAnalyzer (Miembros)

Microsoft.Ink (Espacio de nombres)

Microsoft.Ink.StrokeType