PropertyGuidsForAnalysisHints.Guide-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des InkRecognizerGuide an, der die Führung für einen Analysehinweis darstellt.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
'Declaration
Public Shared ReadOnly Guide As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHints.Guide
public static readonly Guid Guide
public:
static initonly Guid Guide
public static final Guid Guide
public static final var Guide : Guid
Dieses Feld stellt den InkRecognizerGuide auf einem ContextNode vom Typ AnalysisHint dar. Eine Erkennungsführung ist der Bereich, in dem Freihandeingaben gezeichnet und erkannt werden.
Im folgenden Beispiel wird überprüft, ob ein Guide in der ContainsPropertyData-Methode eines AnalysisHintNode existiert. Wenn das Guide-Feld vorhanden ist, füllen die zurückgegebenen Eigenschaftsdaten des Typs RecognizerGuidemyGuide (Visual Basic) oder myInkRecognizerGuideBaseByGuid (C#) auf.
' Get guide for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Guide) Then
Dim myInkRecognizerGuideBaseByGuid As InkRecognizerGuide = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Guide), InkRecognizerGuide)
End If
// Get guide for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForAnalysisHints.Guide))
{
InkRecognizerGuide myInkRecognizerGuideBaseByGuid =
(InkRecognizerGuide)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForAnalysisHints.Guide);
}
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.
Unterstützt in: 3.0
PropertyGuidsForAnalysisHints-Klasse