Partager via


InkAnalyzer.GetAnalysisHints, méthode (String)

Mise à jour : November 2007

Retourne un ContextNodeCollection contenant tous les objets AnalysisHintNode d'un nom spécifié qui sont attachés au InkAnalyzer.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.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 : System.Windows.Ink.ContextNodeCollection
Collection contenant soit les indications d'analyse portant le nom spécifié, soit une 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 StringBuilder nommé notes. Il ajoute des informations concernant l'ensemble des indications d'analyse (nommées theHintName) attachées actuellement au InkAnalyzer (nommé 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))

For Each theHint As AnalysisHintNode 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 (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

System.Windows.Ink, espace de noms

System.Windows.Ink.AnalysisHintNode