PropertyGuidsForContextNodes.NodeData-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen oder Festlegen der GUID an, die die Bilddaten oder Textdaten in einem Bild oder Text darstellt.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Syntax
'Declaration
Public Shared ReadOnly NodeData As Guid
'Usage
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
Hinweise
Dieses Feld stellt die Bild- oder Textdaten für einen ContextNode vom Typ Image bzw. TextWord dar.
Beispiele
Im folgenden Beispiel wird das NodeData-Feld veranschaulicht.
' 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);
}
Plattformen
Windows Vista
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
PropertyGuidsForContextNodes-Klasse