ContextNode.ContainsPropertyData-Methode
Gibt true zurück, wenn das ContextNode-Objekt anwendungsspezifische, unter dem angegebenen Bezeichner gespeicherte Daten enthält.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.dll)
Syntax
'Declaration
Public Function ContainsPropertyData ( _
propertyDataId As Guid _
) As Boolean
'Usage
Dim instance As ContextNode
Dim propertyDataId As Guid
Dim returnValue As Boolean
returnValue = instance.ContainsPropertyData(propertyDataId)
public bool ContainsPropertyData(
Guid propertyDataId
)
public:
bool ContainsPropertyData(
Guid propertyDataId
)
public boolean ContainsPropertyData(
Guid propertyDataId
)
public function ContainsPropertyData(
propertyDataId : Guid
) : boolean
Parameter
- propertyDataId
Typ: System.Guid
Der Bezeichner für die Daten.
Rückgabewert
Typ: System.Boolean
true wenn das ContextNode-Objekt anwendungsspezifische Daten unterhalb des angegebenen Bezeichners enthält; false wenn der Knoten keine anwendungsspezifischen Daten mit dem angegebenen Bezeichner enthält.
Beispiele
In diesem Beispiel wird ein Zeitstempel auf jeden InkWordNode in einem InkAnalyzer mit dem Namen theInkAnalyzer hinzugefügt. Es fügt eine Eigenschaft mit einer Guid mit dem Namen timeStampGuid hinzu und überprüft zunächst, ob der Knoten bereits einen Zeitstempel enthält.
Dim inkWords As ContextNodeCollection = theInkAnalyzer.FindNodesOfType(ContextNodeType.InkWord)
Dim inkWord As ContextNode
For Each inkWord In inkWords
If Not inkWord.ContainsPropertyData(Me.timeStampGuid) Then
inkWord.AddPropertyData(timeStampGuid, DateTime.Now)
End If
Next inkWord
ContextNodeCollection inkWords =
theInkAnalyzer.FindNodesOfType(ContextNodeType.InkWord);
foreach (ContextNode inkWord in inkWords)
{
if (!inkWord.ContainsPropertyData(this.timeStampGuid))
{
inkWord.AddPropertyData(timeStampGuid, DateTime.Now);
}
}
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
System.Windows.Ink.PropertyGuidsForAnalysisHints
System.Windows.Ink.PropertyGuidsForContextNodes
ContextNode.RemovePropertyData