PropertyGuidsForAnalysisHints.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
Assembly: IAWinFX (in IAWinFX.dll)
Syntax
'Declaration
Public Shared ReadOnly CoerceToFactoid As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHints.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 überprüft, ob ein CoerceToFactoid in der ContainsPropertyData-Methode eines AnalysisHintNode existiert. Wenn das CoerceToFactoid-Feld vorhanden ist, wird ein boolescher Wert zurückgegeben, um myCoerceToFactoid aufzufüllen.
' Determine whether hint area conforms to the factoid in the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.CoerceToFactoid) Then
Dim myCoerceToFactoid As Boolean = _
CBool(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.CoerceToFactoid))
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
.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