Freigeben über


ContextNode.RemovePropertyData-Methode

Entfernt anwendungsspezifische Daten.

Namespace:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Syntax

'Declaration
Public Sub RemovePropertyData ( _
    propertyDataId As Guid _
)
'Usage
Dim instance As ContextNode
Dim propertyDataId As Guid

instance.RemovePropertyData(propertyDataId)
public void RemovePropertyData(
    Guid propertyDataId
)
public:
void RemovePropertyData(
    Guid propertyDataId
)
public void RemovePropertyData(
    Guid propertyDataId
)
public function RemovePropertyData(
    propertyDataId : Guid
)

Parameter

  • propertyDataId
    Typ: System.Guid
    Eine Guid, die für die Identifizierung der zu löschenden Datentypen verwendet wird.

Hinweise

Eine ArgumentException wird möglicherweise ausgelöst, wenn Sie versuchen, Daten mit Bezeichnern aus der PropertyGuidsForAnalysisHints- oder PropertyGuidsForContextNodes-Klasse zu entfernen.

Beispiele

In diesem Beispiel wird eine Eigenschaft mit dem Bezeichner timeStampGuid für jeden InkWordNode in einem InkAnalyzer, theInkAnalyzer, entfernt.

Dim inkWords As ContextNodeCollection = theInkAnalyzer.FindNodesOfType(ContextNodeType.InkWord)
Dim inkWord As ContextNode
For Each inkWord In  inkWords
    inkWord.RemovePropertyData(timeStampGuid)
Next inkWord
ContextNodeCollection inkWords =
    theInkAnalyzer.FindNodesOfType(ContextNodeType.InkWord);
foreach (ContextNode inkWord in inkWords)
{
    inkWord.RemovePropertyData(timeStampGuid);
}

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

ContextNode-Klasse

ContextNode-Member

System.Windows.Ink-Namespace

System.Windows.Ink.PropertyGuidsForAnalysisHints

System.Windows.Ink.PropertyGuidsForContextNodes

ContextNode.AddPropertyData

ContextNode.ContainsPropertyData

ContextNode.GetPropertyData

ContextNode.SavePropertiesData

ContextNode.LoadPropertiesData