Freigeben über


PropertyGuidsForContextNodesBase.RecognizedString-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen des String ab, der die erkannte Zeichenfolge darstellt.

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public Shared ReadOnly RecognizedString As Guid
'Usage
Dim value As Guid

value = PropertyGuidsForContextNodesBase.RecognizedString
public static readonly Guid RecognizedString
public:
static initonly Guid RecognizedString
public static final Guid RecognizedString
public static final var RecognizedString : Guid

Hinweise

Dieses Feld stellt die erkannte Zeichenfolge für einen ContextNode vom Typ InkBullet, InkWord, Line, Paragraph, Root oder WritingRegion dar.

Beispiele

Im folgenden Beispiel wird das RecognizedString-Feld veranschaulicht.

' Get the recognized string
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.RecognizedString) Then
    Dim myRecognizedString As String = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.RecognizedString), String)
End If
// Get the recognized string
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.RecognizedString))
{
    string myRecognizedString =
        (string)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.RecognizedString);
}

Plattformen

Windows Vista, Windows XP SP2, Windows Server 2003

.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

PropertyGuidsForContextNodesBase-Klasse

PropertyGuidsForContextNodesBase-Member

System.Windows.Ink.AnalysisCore-Namespace