Campo PropertyGuidsForContextNodesBase.NodeData
Aggiornamento: novembre 2007
Specifica il GUID per ottenere o impostare il GUID che rappresenta i dati immagine o di testo in un'immagine o in una parola di testo.
Spazio dei nomi: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Sintassi
'Dichiarazione
Public Shared ReadOnly NodeData As Guid
'Utilizzo
Dim value As Guid
value = PropertyGuidsForContextNodesBase.NodeData
public static readonly Guid NodeData
public:
static initonly Guid NodeData
public static final Guid NodeData
public static final var NodeData : Guid
Note
Questo campo rappresenta i dati immagine o di testo in un oggetto ContextNode rispettivamente di tipo Image o TextWord.
Esempi
Nell'esempio seguente viene illustrato il campo 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);
}
Piattaforme
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
PropertyGuidsForContextNodesBase Classe