Freigeben über


InkAnalyzer.GetAnalysisHints-Methode

Gibt alle AnalysisHintNode-Objekte zurück, die InkAnalyzer angefügt sind.

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

Syntax

'Declaration
Public Function GetAnalysisHints As ContextNodeCollection
'Usage
Dim instance As InkAnalyzer
Dim returnValue As ContextNodeCollection

returnValue = instance.GetAnalysisHints()
public ContextNodeCollection GetAnalysisHints()
public:
ContextNodeCollection^ GetAnalysisHints()
public ContextNodeCollection GetAnalysisHints()
public function GetAnalysisHints() : ContextNodeCollection

Rückgabewert

Typ: Microsoft.Ink.ContextNodeCollection
Alle AnalysisHintNode-Objekte, die InkAnalyzer angefügt sind.

Hinweise

Diese Methode gibt eine leere ContextNodeCollection zurück, wenn keine AnalysisHintNode-Objekte angehängt sind.

Beispiele

In diesem Beispiel wird ein System.Text.StringBuilder, notes, erstellt. Dann wird die GUID (Globally Unique Identifier) und der Name jedes Analysehinweises hinzugefügt, der aktuell an den InkAnalyzer, theInkAnalyzer, angehängt ist.

' Create a string builder for information about the hints.
Dim notes As New System.Text.StringBuilder()
notes.AppendLine("List of all the current AnalysisHintNodes:")

Dim theHint As Microsoft.Ink.AnalysisHintNode
For Each theHint In Me.theInkAnalyzer.GetAnalysisHints()
    notes.AppendLine(String.Format( _
        "  Hint {0}, name '{1}'", theHint.Id, theHint.Name))
Next theHint
// Create a string builder for information about the hints.
System.Text.StringBuilder notes = new System.Text.StringBuilder();
notes.AppendLine("List of all the current AnalysisHintNodes:");

foreach (Microsoft.Ink.AnalysisHintNode theHint
    in this.theInkAnalyzer.GetAnalysisHints())
{
    notes.AppendLine(string.Format("  Hint {0}, name '{1}'",
        theHint.Id, theHint.Name));
}

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

GetAnalysisHints-Überladung

Microsoft.Ink-Namespace

Microsoft.Ink.AnalysisHintNode