Partager via


InkAnalyzer.GetAnalysisHints, méthode (String)

Mise à jour : November 2007

Retourne tous les objets AnalysisHintNode portant le nom spécifié et attachés au InkAnalyzer.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)

Syntaxe

'Déclaration
Public Function GetAnalysisHints ( _
    hintName As String _
) As ContextNodeCollection
'Utilisation
Dim instance As InkAnalyzer
Dim hintName As String
Dim returnValue As ContextNodeCollection

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

Paramètres

  • hintName
    Type : System.String
    Nom de l'indication d'analyse à retourner.

Valeur de retour

Type : Microsoft.Ink.ContextNodeCollection
Collection contenant les indications d'analyse portant le nom spécifié, ou collection vide, si aucune indication de ce genre n'est attachée à l'analyseur d'entrée manuscrite.

Notes

Cette méthode peut retourner uniquement des indications d'analyse dont la propriété Name est définie.

Exemples

Cet exemple crée un System.Text.StringBuilder (page pouvant être en anglais), notes. Il ajoute alors des informations sur toutes les indications d'analyse portant le nom theHintName, actuellement attaché au InkAnalyzer, theInkAnalyzer.

' Create a string builder for information about the hints.
Dim notes As New System.Text.StringBuilder()
notes.AppendLine(String.Format( _
    "List of all the current AnalysisHintNodes named '{0}':", theHintName))

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

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

Plateformes

Windows Vista

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

InkAnalyzer, classe

Membres InkAnalyzer

GetAnalysisHints, surcharge

Microsoft.Ink, espace de noms

Microsoft.Ink.AnalysisHintNode