PropertyGuidsForContextNodes.NodeData 필드
업데이트: 2007년 11월
이미지나 텍스트 단어의 이미지 데이터 또는 텍스트 데이터를 나타내는 GUID(Globally Unique Identifier)를 가져오거나 설정하는 데 사용할 GUID를 지정합니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)
구문
‘선언
Public Shared ReadOnly NodeData As Guid
‘사용 방법
Dim value As Guid
value = PropertyGuidsForContextNodes.NodeData
public static readonly Guid NodeData
public:
static initonly Guid NodeData
public static final Guid NodeData
public static final var NodeData : Guid
설명
이 필드는 각각 Image 또는 TextWord 형식의 ContextNode에서 이미지 데이터 또는 텍스트 데이터를 나타냅니다.
예제
다음 예제에서는 NodeData 필드를 보여 줍니다.
' Get the GUID that represents the image data or text data on an image or text word
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.NodeData) Then
Dim myNodeData As Guid = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.NodeData), Guid)
End If
// Get the GUID that represents the image data or text data on an image or text word
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.NodeData))
{
Guid myNodeData =
(Guid)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.NodeData);
}
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원
참고 항목
참조
PropertyGuidsForContextNodes 클래스