Freigeben über


PropertyGuidsForContextNodes.RecognitionLattice-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen des Lattice an, der das erkannte Objekt darstellt.

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

Syntax

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

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

Hinweise

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

Beispiele

Im folgenden Beispiel wird das RecognitionLattice-Feld veranschaulicht.

' Get the lattice that represents the recognized object
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.RecognitionLattice) Then
    Dim myRecognitionLattice As System.Windows.Ink.AnalysisCore.Lattice = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.RecognitionLattice), _
        System.Windows.Ink.AnalysisCore.Lattice)
End If
// Get the lattice that represents the recognized object
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.RecognitionLattice))
{
    System.Windows.Ink.AnalysisCore.Lattice myRecognitionLattice =
        (System.Windows.Ink.AnalysisCore.Lattice)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.RecognitionLattice);
}

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

PropertyGuidsForContextNodes-Klasse

PropertyGuidsForContextNodes-Member

Microsoft.Ink-Namespace