Freigeben über


PropertyGuidsForAnalysisHints.Name-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des String an, der den Namen eines Analysehinweises darstellt.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.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 auf einem ContextNode vom Typ AnalysisHint dar.

Beispiele

Im folgenden Beispiel wird das Name-Feld veranschaulicht.

' Get the name of the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForAnalysisHints.Name) Then
    Dim myName As String = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForAnalysisHints.Name), String)
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

PropertyGuidsForAnalysisHints-Member

Microsoft.Ink-Namespace