PropertyGuidsForContextNodes.RecognitionLattice, champ
Mise à jour : November 2007
Spécifie l'identificateur global unique (GUID) permettant d'obtenir le Lattice qui représente l'objet reconnu.
Espace de noms : System.Windows.Ink
Assembly : IAWinFX (dans IAWinFX.dll)
Syntaxe
'Déclaration
Public Shared ReadOnly RecognitionLattice As Guid
'Utilisation
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
Notes
Ce champ représente l'objet reconnu sur un ContextNode de type InkBullet, InkWord, Line, Paragraph, Root ou WritingRegion.
Exemples
L'exemple suivant recherche un RecognitionLattice existant dans la méthode ContainsPropertyData d'un AnalysisHintNode. Si le champ RecognitionLattice existe, les données de propriété retournées de type Lattice remplissent myRecognitionLattice.
' 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);
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0
Voir aussi
Référence
PropertyGuidsForContextNodes, classe