PropertyGuidsForAnalysisHintsBase.CoerceToFactoid, champ
Mise à jour : November 2007
Spécifie l'identificateur global unique (GUID) permettant d'obtenir ou de définir la valeur booléenne qui détermine si l'analyseur d'entrée manuscrite limite son analyse à la zone de l'indication pour se conformer à l'élément.
Espace de noms : System.Windows.Ink.AnalysisCore
Assembly : IACore (dans IACore.dll)
Syntaxe
'Déclaration
Public Shared ReadOnly CoerceToFactoid As Guid
'Utilisation
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
Notes
Ce champ détermine si l'analyseur d'entrée manuscrite se conforme à l'élément sur un ContextNode de type AnalysisHint.
Exemples
L'exemple suivant présente le champ CoerceToFactoid.
' 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);
}
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