Proprietà DivisionUnit.Strokes
Aggiornamento: novembre 2007
Ottiene l'insieme Strokes utilizzato per creare l'oggetto DivisionUnit.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property Strokes As Strokes
'Utilizzo
Dim instance As DivisionUnit
Dim value As Strokes
value = instance.Strokes
public Strokes Strokes { get; }
public:
property Strokes^ Strokes {
Strokes^ get ();
}
/** @property */
public Strokes get_Strokes()
public function get Strokes () : Strokes
Valore proprietà
Tipo: Microsoft.Ink.Strokes
Insieme Strokes utilizzato per creare l'oggetto DivisionUnit.
Note
Questa proprietà contiene un insieme Strokes che è il sottoinsieme dei tratti nell'oggetto DivisionResult che corrisponde a un particolare oggetto DivisionUnit. È possibile passare questi tratti a un oggetto RecognizerContext separato per ottenere un RecognitionResult per l'oggetto DivisionUnit.
Esempi
In questo esempio di C# viene creato un oggetto Divider, theDivider che contiene un insieme Strokes, theStrokes, e viene utilizzato un oggetto RecognizerContext, theRecognizerContext. Il metodo Divide viene chiamato per ottenere uno snapshot dei risultati dell'analisi, theResult. Il metodo ResultByType viene chiamato con il parametro divisionType impostato su Line, un'enumerazione InkDivisionType, per recuperare tutte le unità di riga all'interno di theResult. Per ogni riga theLine nell'insieme, vengono recuperate le proprietà DivisionType, Strokes, RecognitionString e Transform.
// Create the Divider and assign a Strokes collection to it.
Divider theDivider = new Divider(theStrokes, theRecognizerContext);
// Retrieve the analysis result, and divide the result by line.
DivisionResult theResult = theDivider.Divide();
DivisionUnits theDivisionUnits =
theResult.ResultByType(InkDivisionType.Line);
foreach (DivisionUnit theLine in theDivisionUnits)
{
// For each line element in the collection
// retrieve the division type, the strokes,
// the recognition string, and the rotation transform.
InkDivisionType theDivisionType = theLine.DivisionType;
Strokes elementStrokes = theLine.Strokes;
string theRecognitionString = theLine.RecognitionString;
System.Drawing.Drawing2D.Matrix theInkTransform =
theLine.Transform;
}
In questo esempio di Microsoft® Visual Basic® .NET viene creato un oggetto Divider, theDivider che contiene un insieme Strokes, theStrokes, e viene utilizzato un oggetto RecognizerContext, theRecognizerContext. Il metodo Divide viene chiamato per ottenere uno snapshot dei risultati dell'analisi, theResult. Il metodo ResultByType viene chiamato con il parametro divisionType impostato su Line, un'enumerazione InkDivisionType, per recuperare tutte le unità di riga all'interno di theResult. Per ogni riga theLine nell'insieme, vengono recuperate le proprietà DivisionType, Strokes, RecognitionString e Transform.
' Create the Divider and assign a Strokes collection to it.
Dim theDivider As Divider = New Divider(theStrokes, theRecognizerContext)
' Retrieve the analysis result, and divide the result by line.
Dim theResult As DivisionResult = theDivider.Divide()
Dim theDivisionUnits As DivisionUnits = _
theResult.ResultByType(InkDivisionType.Line)
Dim theLine As DivisionUnit
For Each theLine In theDivisionUnits
' For each line element in the collection
' retrieve the division type, the strokes,
' the recognition string, and the rotation transform.
Dim theDivisionType As InkDivisionType = theLine.DivisionType
Dim elementStrokes As Strokes = theLine.Strokes
Dim theRecognitionString As String = theLine.RecognitionString
Dim theInkTransform As System.Drawing.Drawing2D.Matrix = _
theLine.Transform
Next
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