Campo PropertyGuidsForAnalysisHints.Name
Aggiornamento: novembre 2007
Specifica il GUID per ottenere e impostare l'oggetto String che rappresenta il nome di un suggerimento di analisi.
Spazio dei nomi: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
Sintassi
'Dichiarazione
Public Shared ReadOnly Name As Guid
'Utilizzo
Dim value As Guid
value = PropertyGuidsForAnalysisHints.Name
public static readonly Guid Name
public:
static initonly Guid Name
public static final Guid Name
public static final var Name : Guid
Note
Questo campo rappresenta il nome di un oggetto ContextNode di tipo AnalysisHint.
Esempi
Nell'esempio seguente viene verificata l'esistenza del campo Name nel metodo ContainsPropertyData di un oggetto AnalysisHintNode. Se il campo Name esiste, i dati della proprietà restituiti di tipo String popolano myName (Visual Basic) o myInkRecognizerGuideBaseByGuid (C#).
' Get the name of the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Name) Then
Dim myInkRecognizerGuideBaseByGuid As String = _
CStr(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Name))
End If
// Get the name of the analysis hint
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForAnalysisHints.Name))
{
string myInkRecognizerGuideBaseByGuid =
(string)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForAnalysisHints.Name);
}
Piattaforme
Windows Vista
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
PropertyGuidsForAnalysisHints Classe