PropertyGuidsForContextNodes.CustomRecognizerId 필드
업데이트: 2007년 11월
사용자 지정 인식기의 사용자 지정 잉크 인식기를 나타내는 GUID(Globally Unique Identifier)를 가져오거나 설정하는 데 사용할 GUID를 지정합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)
구문
‘선언
Public Shared ReadOnly CustomRecognizerId As Guid
‘사용 방법
Dim value As Guid
value = PropertyGuidsForContextNodes.CustomRecognizerId
public static readonly Guid CustomRecognizerId
public:
static initonly Guid CustomRecognizerId
public static final Guid CustomRecognizerId
public static final var CustomRecognizerId : Guid
설명
CustomRecognizer 형식의 ContextNode에서 사용자 지정 잉크 인식기를 나타냅니다.
예제
다음 예제에서는 CustomRecognizerId 필드를 보여 줍니다.
' 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
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원
참고 항목
참조
PropertyGuidsForContextNodes 클래스