Campo PropertyGuidsForAnalysisHints.CoerceToFactoid
Aggiornamento: novembre 2007
Specifica il GUID per ottenere o impostare il valore booleano che determina se l'analizzatore dell'input penna limita l'analisi dell'input penna all'interno dell'area del suggerimento per conformità al controllo oggetto.
Spazio dei nomi: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Sintassi
'Dichiarazione
Public Shared ReadOnly CoerceToFactoid As Guid
'Utilizzo
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
Note
Questo campo indica se l'analizzatore dell'input penna è conforme al controllo oggetto in un oggetto ContextNode di tipo AnalysisHint.
Esempi
Nell'esempio seguente viene illustrato il campo 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);
}
Piattaforme
Windows Vista
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
PropertyGuidsForAnalysisHints Classe