ContextNodeBase.RemovePropertyData 方法

移除一段特定于应用程序的数据。

命名空间:  System.Windows.Ink.AnalysisCore
程序集:  IACore(在 IACore.dll 中)

语法

声明
Public Sub RemovePropertyData ( _
    propertyDataId As Guid _
)
用法
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
)

参数

  • propertyDataId
    类型:System.Guid
    一个 Guid,用于标识要移除的数据的类型。

备注

如果尝试移除具有 PropertyGuidsForAnalysisHintsBasePropertyGuidsForContextNodesBase 类中的标识符的数据,则可能引发 ArgumentException

示例

此示例移除每一个作为 InkAnalyzerBase(名为 theInkAnalyzerBase)中 InkWordContextNodeBase 上具有标识符 timeStampGuid 的属性。

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);
}

平台

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

ContextNodeBase 类

ContextNodeBase 成员

System.Windows.Ink.AnalysisCore 命名空间

System.Windows.Ink.AnalysisCore.PropertyGuidsForAnalysisHintsBase

System.Windows.Ink.AnalysisCore.PropertyGuidsForContextNodesBase

ContextNodeBase.AddPropertyData

ContextNodeBase.ContainsPropertyData

ContextNodeBase.GetPropertyData

ContextNodeBase.SavePropertiesData

ContextNodeBase.LoadPropertiesData