Sdílet prostřednictvím


PropertyGuidsForContextNodes.RecognizedString Field

Specifies the globally unique identifier (GUID) for getting the String that represents the recognized string.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

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

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

Remarks

This field represents the recognized string on a ContextNode of type InkBullet, InkWord, Line, Paragraph, Root, or WritingRegion.

Examples

The following example demonstrates the RecognizedString field.

' 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);
}

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

PropertyGuidsForContextNodes Class

PropertyGuidsForContextNodes Members

Microsoft.Ink Namespace