PropertyGuidsForAnalysisHints.Guide-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des RecognizerGuide an, der die Führung für einen Analysehinweis darstellt.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Syntax
'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
Hinweise
Dieses Feld stellt den RecognizerGuide auf einem ContextNode vom Typ AnalysisHint dar. Führungen sind die Bereiche, in denen Freihandeingaben gezeichnet und erkannt werden.
Beispiele
Im folgenden Beispiel wird das Guide-Feld veranschaulicht.
' Get guide for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Guide) Then
Dim myGuide As RecognizerGuide = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Guide), RecognizerGuide)
End If
// Get guide for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForAnalysisHints.Guide))
{
RecognizerGuide myInkRecognizerGuideBaseByGuid =
(RecognizerGuide)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForAnalysisHints.Guide);
}
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
PropertyGuidsForAnalysisHints-Klasse