Condividi tramite


Metodo ContextNodeBase.RemovePropertyData

Aggiornamento: novembre 2007

Rimuove un blocco di dati specifici dell'applicazione.

Spazio dei nomi:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Sintassi

'Dichiarazione
Public Sub RemovePropertyData ( _
    propertyDataId As Guid _
)
'Utilizzo
Dim instance As ContextNodeBase
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
)

Parametri

  • propertyDataId
    Tipo: System.Guid
    Guid utilizzato per identificare il tipo di dati da rimuovere.

Note

Se si tenta di rimuovere i dati con gli identificatori dalle classi PropertyGuidsForAnalysisHintsBase o PropertyGuidsForContextNodesBase è possibile che venga generata un'eccezione ArgumentException.

Esempi

In questo esempio viene rimossa una proprietà con identificatore timeStampGuid in ogni oggetto ContextNodeBase che rappresenta un oggetto InkWord in un oggetto InkAnalyzerBase denominato theInkAnalyzerBase.

Dim inkWords As ContextNodeBaseCollection = _
    theInkAnalyzerBase.FindNodesOfType(System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.InkWord)
Dim inkWord As ContextNodeBase
For Each inkWord In inkWords
    inkWord.RemovePropertyData(timeStampGuid)
Next inkWord
ContextNodeBaseCollection inkWords =
    theInkAnalyzerBase.FindNodesOfType(System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.InkWord);
foreach (ContextNodeBase inkWord in inkWords)
{
    inkWord.RemovePropertyData(timeStampGuid);
}

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

ContextNodeBase Classe

Membri ContextNodeBase

Spazio dei nomi System.Windows.Ink.AnalysisCore

System.Windows.Ink.AnalysisCore.PropertyGuidsForAnalysisHintsBase

System.Windows.Ink.AnalysisCore.PropertyGuidsForContextNodesBase

ContextNodeBase.AddPropertyData

ContextNodeBase.ContainsPropertyData

ContextNodeBase.GetPropertyData

ContextNodeBase.SavePropertiesData

ContextNodeBase.LoadPropertiesData