ContentControlStoreUpdatingEventHandler 委托
表示将处理 ContentControlBase 的 StoreUpdating 事件的方法。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)
语法
声明
Public Delegate Sub ContentControlStoreUpdatingEventHandler ( _
sender As Object, _
e As ContentControlStoreUpdatingEventArgs _
)
public delegate void ContentControlStoreUpdatingEventHandler(
Object sender,
ContentControlStoreUpdatingEventArgs e
)
参数
- sender
类型:System.Object
事件源。
备注
当创建 ContentControlStoreUpdatingEventHandler 委托时,将标识处理事件的方法。 若要使该事件与事件处理程序相关联,请将该委托的一个实例添加到事件中。 除非移除了该委托,否则每当发生该事件时就调用事件处理程序。 有关事件处理程序委托的更多信息,请参见 事件和委托。
示例
有关演示如何创建 ContentControlStoreUpdatingEventHandler 委托的代码示例,请参见 StoreUpdating 事件。