PropertyGuidsForAnalysisHintsBase.CoerceToFactoid-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen oder Festlegen des booleschen Werts an, der festlegt, ob das Freihandanalysemodul die Freihandanalyse innerhalb des Hinweisbereichs beschränkt, um dem Faktoid zu entsprechen.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Shared ReadOnly CoerceToFactoid As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.CoerceToFactoid
public static readonly Guid CoerceToFactoid
public:
static initonly Guid CoerceToFactoid
public static final Guid CoerceToFactoid
public static final var CoerceToFactoid : Guid
Hinweise
Dieses Feld stellt dar, ob das Freihandanalysemodul dem Faktoid auf einem ContextNode des Typs AnalysisHint entspricht.
Beispiele
Im folgenden Beispiel wird das CoerceToFactoid-Feld veranschaulicht.
' Determine whether hint area conforms to the factoid in the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.CoerceToFactoid) Then
Dim myCoerceToFactoid As Boolean = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.CoerceToFactoid), Boolean)
End If
// Determine whether hint area conforms to the factoid in the analysis hint
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.CoerceToFactoid))
{
bool myCoerceToFactoid =
(bool)myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.CoerceToFactoid);
}
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.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
PropertyGuidsForAnalysisHintsBase-Klasse