AnalysisHintNode.Name, propriété
Mise à jour : November 2007
Obtient ou définit le nom de ce nœud d'indication d'analyse.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)
Syntaxe
'Déclaration
Public Property Name As String
'Utilisation
Dim instance As AnalysisHintNode
Dim value As String
value = instance.Name
instance.Name = value
public string Name { get; set; }
public:
property String^ Name {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_Name()
/** @property */
public void set_Name(String value)
public function get Name () : String
public function set Name (value : String)
Valeur de propriété
Type : System.String
Nom de ce AnalysisHintNode. La valeur par défaut est une chaîne vide ("").
Notes
Pour rechercher une indication existante en fonction du nom dans un InkAnalyzer, utilisez la méthode InkAnalyzer.GetAnalysisHints(String). Le nom d'une indication n'affecte pas l'analyse d'entrée manuscrite.
Pour supprimer le nom d'une indication, affectez la valeur nullune référence null (Nothing en Visual Basic) à Name.
Exemples
Cet exemple crée un AnalysisHintNode, theAnalysisHint, pour le InkAnalyzer, theInkAnalyzerWithHint, et définit theAnalysisHint comme une indication globale. Il définit ensuite les propriétés AllowPartialDictionaryTerms et Name sur l'indication.
' Add a new, global analysis hint to theInkAnalyzerWithHint.
Dim theAnalysisHint As Microsoft.Ink.AnalysisHintNode = _
Me.theInkAnalyzerWithHint.CreateAnalysisHint()
theAnalysisHint.Location.MakeInfinite()
theAnalysisHint.AllowPartialDictionaryTerms = True
theAnalysisHint.Name = "Allow Partial Dictionary Terms"
// Add a new, global analysis hint to theInkAnalyzerWithHint.
Microsoft.Ink.AnalysisHintNode theAnalysisHint =
this.theInkAnalyzerWithHint.CreateAnalysisHint();
theAnalysisHint.Location.MakeInfinite();
theAnalysisHint.AllowPartialDictionaryTerms = true;
theAnalysisHint.Name = "Allow Partial Dictionary Terms";
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