PropertyGuidsForAnalysisHintsBase.CoerceToFactoid - поле
Обновлен: Ноябрь 2007
Specifies the globally unique identifier (GUID) for getting or setting the Boolean value that determines whether the ink analyzer limits its analysis of ink within the hint's area to conform to the factoid.
Пространство имен: System.Windows.Ink.AnalysisCore
Сборка: IACore (в IACore.dll)
Синтаксис
'Декларация
Public Shared ReadOnly CoerceToFactoid As Guid
'Применение
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
Заметки
This field represents whether the ink analyzer conforms to the factoid on a ContextNode of type AnalysisHint.
Примеры
The following example demonstrates the CoerceToFactoid field.
' 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);
}
Платформы
Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
PropertyGuidsForAnalysisHintsBase Класс