AnalysisHintNode.Name, propriété
Mise à jour : November 2007
Obtient ou définit le nom du AnalysisHintNode actif.
Espace de noms : System.Windows.Ink
Assembly : IAWinFX (dans IAWinFX.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 un nom d'une indication, affectez la valeur nullune référence null (Nothing en Visual Basic) à Name.
Exemples
Cet exemple crée un AnalysisHintNode (nommé theAnalysisHint) pour le InkAnalyzer (nommé theInkAnalyzerWithHint), et définit theAnalysisHint comme une indication globale. Les propriétés AllowPartialDictionaryTerms et Name sont ensuite définies sur l'indication.
' Add a new, global analysis hint to theInkAnalyzerWithHint.
Dim theAnalysisHint As AnalysisHintNode = Me.theInkAnalyzerWithHint.CreateAnalysisHint()
theAnalysisHint.Location.MakeInfinite()
theAnalysisHint.AllowPartialDictionaryTerms = True
theAnalysisHint.Name = "Allow Partial Dictionary Terms"
// Add a new, global analysis hint to theInkAnalyzerWithHint.
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