PropertyGuidsForContextNodesBase.CustomRecognizerId - поле
Обновлен: Ноябрь 2007
Specifies the globally unique identifier (GUID) for getting or setting the GUID that represents the custom ink recognizer on a custom recognizer.
Пространство имен: System.Windows.Ink.AnalysisCore
Сборка: IACore (в IACore.dll)
Синтаксис
'Декларация
Public Shared ReadOnly CustomRecognizerId As Guid
'Применение
Dim value As Guid
value = PropertyGuidsForContextNodesBase.CustomRecognizerId
public static readonly Guid CustomRecognizerId
public:
static initonly Guid CustomRecognizerId
public static final Guid CustomRecognizerId
public static final var CustomRecognizerId : Guid
Заметки
Represents the custom ink recognizer on a ContextNode of type CustomRecognizer.
Примеры
The following example demonstrates the CustomRecognizerId field.
' Get GUID for custom recognizer
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.CustomRecognizerId) Then
Dim myCustomRecognizerId As Guid = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.CustomRecognizerId), Guid)
End If
// Get GUID for custom recognizer
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.CustomRecognizerId))
{
Guid myCustomRecognizer =
(Guid)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.CustomRecognizerId);
}
Платформы
Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
PropertyGuidsForContextNodesBase Класс