Freigeben über


DivisionUnit.DivisionType-Eigenschaft

Ruft den Strukturtyp dieses DivisionUnit-Objekts ab.

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

Syntax

'Declaration
Public ReadOnly Property DivisionType As InkDivisionType
'Usage
Dim instance As DivisionUnit
Dim value As InkDivisionType

value = instance.DivisionType
public InkDivisionType DivisionType { get; }
public:
property InkDivisionType DivisionType {
    InkDivisionType get ();
}
/** @property */
public InkDivisionType get_DivisionType()
public function get DivisionType () : InkDivisionType

Eigenschaftenwert

Typ: Microsoft.Ink.InkDivisionType
Der Strukturtyp dieses DivisionUnit-Objekts. Der Standardwert lautet InkDivisionType.

Hinweise

Weitere Informationen zu Strukturtypen finden Sie unter der InkDivisionType-Enumeration

Beispiele

In diesem C#-Beispiel wird das Divider-Objekt theDivider erstellt, das die Strokes-Auflistung theStrokes enthält und das RecognizerContext-Objekt theRecognizerContext verwendet. Die Divide-Methode wird aufgerufen, um einen Snapshot der Analyseergebnisse (theResult) abzurufen. Die ResultByType-Methode wird aufgerufen, und der divisionType-Parameter ist auf Line festgelegt, eine InkDivisionType-Enumeration, um alle Linieneinheiten in theResult abzurufen. Für jede Zeile mit dem Namen theLine in der Auflistung werden die Eigenschaften DivisionType, Strokes, RecognitionString und Transform abgerufen.

// 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 diesem Microsoft® Visual Basic® .NET-Beispiel wird das Divider-Objekt theDivider erstellt, das die Strokes-Auflistung theStrokes enthält und das RecognizerContext-Objekt theRecognizerContext verwendet. Die Divide-Methode wird aufgerufen, um einen Snapshot der Analyseergebnisse (theResult) abzurufen. Die ResultByType-Methode wird aufgerufen, und der divisionType-Parameter ist auf Line festgelegt, eine InkDivisionType-Enumeration, um alle Linieneinheiten in theResult abzurufen. Für jede Zeile mit dem Namen theLine in der Auflistung werden die Eigenschaften DivisionType, Strokes, RecognitionString und Transform abgerufen.

' 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

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

DivisionUnit-Klasse

DivisionUnit-Member

Microsoft.Ink-Namespace

InkDivisionType