PropertyGuidsForAnalysisHintsBase.Guide, champ
Mise à jour : November 2007
Spécifie l'identificateur global unique (GUID) permettant d'obtenir et de définir le InkRecognizerGuideBase qui représente le repère d'une indication d'analyse.
Espace de noms : System.Windows.Ink.AnalysisCore
Assembly : IACore (dans IACore.dll)
Syntaxe
'Déclaration
Public Shared ReadOnly Guide As Guid
'Utilisation
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.Guide
public static readonly Guid Guide
public:
static initonly Guid Guide
public static final Guid Guide
public static final var Guide : Guid
Notes
Ce champ représente le InkRecognizerGuideBase sur un ContextNode de type AnalysisHint. Les repères correspondent à la zone dans laquelle l'entrée manuscrite est tracée et reconnue.
Exemples
L'exemple suivant présente le champ Guide.
' Get guide for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Guide) Then
Dim myGuide As InkRecognizerGuideBase = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Guide), InkRecognizerGuideBase)
End If
// Get guide for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.Guide))
{
InkRecognizerGuideBase myInkRecognizerGuideBaseByGuid =
(InkRecognizerGuideBase)myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.Guide);
}
Plateformes
Windows Vista, Windows XP SP2, Windows Server 2003
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
PropertyGuidsForAnalysisHintsBase, classe