PropertyGuidsForAnalysisHints.Name-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des String an, der den Namen eines Analysehinweises darstellt.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
Syntax
'Declaration
Public Shared ReadOnly Name As Guid
'Usage
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
Hinweise
Dieses Feld stellt den Namen für einen ContextNode vom Typ AnalysisHint dar.
Beispiele
Im folgenden Beispiel wird überprüft, ob ein Name in der ContainsPropertyData-Methode eines AnalysisHintNode existiert. Wenn das Name-Feld vorhanden ist, füllen die zurückgegebenen Eigenschaftsdaten des Typs StringmyName (Visual Basic) oder myInkRecognizerGuideBaseByGuid (C#) auf.
' 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);
}
Plattformen
Windows Vista
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
PropertyGuidsForAnalysisHints-Klasse