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